Browse Source

no more persistent fury AoEs

lakebane-recovery
FatBoy-DOTC 4 days ago
parent
commit
11211af6f0
  1. 3
      src/engine/jobs/PersistentAoeJob.java

3
src/engine/jobs/PersistentAoeJob.java

@ -47,8 +47,9 @@ public class PersistentAoeJob extends AbstractEffectJob {
if(this.source.isAlive() && this.source.getObjectType().equals(GameObjectType.PlayerCharacter)){ if(this.source.isAlive() && this.source.getObjectType().equals(GameObjectType.PlayerCharacter)){
PlayerCharacter pc = (PlayerCharacter)this.source; PlayerCharacter pc = (PlayerCharacter)this.source;
if(pc.isBoxed){ if(pc.getPromotionClassID() == 2511){
this.cancelJob(); this.cancelJob();
return;
} }
} }

Loading…
Cancel
Save