forked from MagicBane/Server
Box Tracker
This commit is contained in:
@@ -4876,7 +4876,7 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
if (this.isBoxed) {
|
if (this.isBoxed) {
|
||||||
if (this.title.equals(CharacterTitle.BOX) == false) {
|
if (this.title.equals(CharacterTitle.BOX) == false) {
|
||||||
this.title = CharacterTitle.BOX;
|
this.title = CharacterTitle.BOX;
|
||||||
InterestManager.reloadCharacter(this,true);
|
InterestManager.setObjectDirty(this);
|
||||||
}
|
}
|
||||||
if (this.containsEffect(1672601862) == false) {//Deathshroud
|
if (this.containsEffect(1672601862) == false) {//Deathshroud
|
||||||
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
|
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
|
||||||
@@ -4884,7 +4884,7 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
} else {
|
} else {
|
||||||
if (this.title.equals(CharacterTitle.NONE) == false) {
|
if (this.title.equals(CharacterTitle.NONE) == false) {
|
||||||
this.title = CharacterTitle.NONE;
|
this.title = CharacterTitle.NONE;
|
||||||
InterestManager.reloadCharacter(this,true);
|
InterestManager.setObjectDirty(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user