Browse Source

removed treb override in MobileFSM.DetermineAction

master
FatBoy-DOTC 2 years ago
parent
commit
ac42a9cd8f
  1. 5
      src/engine/ai/MobileFSM.java

5
src/engine/ai/MobileFSM.java

@ -305,11 +305,6 @@ public class MobileFSM { @@ -305,11 +305,6 @@ public class MobileFSM {
public static void DetermineAction(Mob mob) {
if (mob == null)
return;
if (mob.despawned && mob.getMobBase().getLoadID() == 13171) {
//trebuchet spawn handler
CheckForRespawn(mob);
return;
}
if (mob.despawned && mob.isPlayerGuard) {
//override for guards
if(mob.BehaviourType.ordinal() == Enum.MobBehaviourType.GuardMinion.ordinal()){

Loading…
Cancel
Save