|
|
|
@ -263,7 +263,7 @@ public class MobAI {
@@ -263,7 +263,7 @@ public class MobAI {
|
|
|
|
|
|
|
|
|
|
//guard captains inherit barracks patrol points dynamically
|
|
|
|
|
|
|
|
|
|
if (mob.agentType.equals(Enum.AIAgentType.GUARDCAPTAIN)) { |
|
|
|
|
if (mob.agentType.equals(Enum.AIAgentType.GUARDCAPTAIN) || mob.agentType.equals(Enum.AIAgentType.GUARDMINION)) { |
|
|
|
|
|
|
|
|
|
Building barracks = mob.building; |
|
|
|
|
|
|
|
|
@ -283,23 +283,6 @@ public class MobAI {
@@ -283,23 +283,6 @@ public class MobAI {
|
|
|
|
|
|
|
|
|
|
MovementUtilities.aiMove(mob, mob.destination, true); |
|
|
|
|
|
|
|
|
|
if (mob.agentType.equals(Enum.AIAgentType.GUARDCAPTAIN)) |
|
|
|
|
for (Integer minionUUUD : mob.minions) { |
|
|
|
|
|
|
|
|
|
Mob minion = Mob.getMob(minionUUUD); |
|
|
|
|
|
|
|
|
|
//make sure mob is out of combat stance
|
|
|
|
|
|
|
|
|
|
if (minion.despawned == false) { |
|
|
|
|
if (MovementUtilities.canMove(minion)) { |
|
|
|
|
Vector3f minionOffset = Formation.getOffset(2, mob.minions.indexOf(minionUUUD) + 3); |
|
|
|
|
minion.updateLocation(); |
|
|
|
|
Vector3fImmutable formationPatrolPoint = new Vector3fImmutable(mob.destination.x + minionOffset.x, mob.destination.y, mob.destination.z + minionOffset.z); |
|
|
|
|
MovementUtilities.aiMove(minion, formationPatrolPoint, true); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackTarget" + " " + e.getMessage()); |
|
|
|
|
} |
|
|
|
|