Browse Source

boxed characters to have pathfinding effect applied at all times

lakebane-master
FatBoy-DOTC 9 months ago
parent
commit
6668c01185
  1. 5
      src/engine/objects/PlayerCharacter.java

5
src/engine/objects/PlayerCharacter.java

@ -4814,9 +4814,12 @@ public class PlayerCharacter extends AbstractCharacter { @@ -4814,9 +4814,12 @@ public class PlayerCharacter extends AbstractCharacter {
this.safeZone = this.isInSafeZone();
if(this.isBoxed && this.containsEffect(1672601862) == false) {
if(this.isBoxed && this.containsEffect(1672601862) == false) {//Deathshroud
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
}
if(this.isBoxed && this.containsEffect(429611355) == false) {//pathfinding
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 429611355, 40, false);
}
} catch (Exception e) {
Logger.error(e);

Loading…
Cancel
Save