Boxed Title

This commit is contained in:
2024-05-10 18:23:35 -05:00
parent f0ad1b730c
commit 4440ed1f0d
+6 -1
View File
@@ -4845,9 +4845,14 @@ public class PlayerCharacter extends AbstractCharacter {
} }
} }
if(this.isBoxed && this.containsEffect(1672601862) == false) {//Deathshroud if(this.isBoxed) {
this.title = CharacterTitle.BOX;
if (this.containsEffect(1672601862) == false) {//Deathshroud
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false); PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
} }
}else{
this.title = CharacterTitle.NONE;
}
} }
} catch (Exception e) { } catch (Exception e) {