wall archer debugging

This commit is contained in:
2023-04-19 19:05:24 -05:00
parent f3b6f5595b
commit aa8f59f6f7
3 changed files with 6 additions and 3 deletions
+5 -1
View File
@@ -2002,7 +2002,11 @@ public class Mob extends AbstractIntelligenceAgent {
this.BehaviourType = this.getMobBase().fsm;
}
if(this.isPlayerGuard() && this.contract != null){
this.BehaviourType = Enum.MobBehaviourType.GuardCaptain;
if(NPC.ISWallArcher(this.getContract().getContractID())){
this.BehaviourType = MobBehaviourType.GuardWallArcher;
} else {
this.BehaviourType = Enum.MobBehaviourType.GuardCaptain;
}
}
} catch (Exception e) {
Logger.error(e.getMessage());