diff --git a/src/engine/mobileAI/MobAI.java b/src/engine/mobileAI/MobAI.java index 2cdc5bff..d618a78a 100644 --- a/src/engine/mobileAI/MobAI.java +++ b/src/engine/mobileAI/MobAI.java @@ -48,18 +48,19 @@ public class MobAI { return; } - if (target.getObjectType() == Enum.GameObjectType.PlayerCharacter && canCast(mob)) { - - if (mob.isPlayerGuard() == false && MobCast(mob)) { - mob.updateLocation(); - return; - } - - if (mob.isPlayerGuard() == true && GuardCast(mob)) { - mob.updateLocation(); - return; - } - } + //mob casting disabled + //if (target.getObjectType() == Enum.GameObjectType.PlayerCharacter && canCast(mob)) { + + //if (mob.isPlayerGuard() == false && MobCast(mob)) { + // mob.updateLocation(); + // return; + //} + + //if (mob.isPlayerGuard() == true && GuardCast(mob)) { + // mob.updateLocation(); + // return; + //} + //} if (!CombatUtilities.inRangeToAttack(mob, target)) return;