pet run/walk determined by owner
This commit is contained in:
@@ -428,6 +428,7 @@ public class MobAI {
|
||||
mob.updateLocation();
|
||||
}
|
||||
|
||||
if(!mob.isPet()) {
|
||||
boolean combatState = mob.isCombat();
|
||||
mob.setCombat(mob.combatTarget != null);
|
||||
if (combatState != mob.isCombat()) {
|
||||
@@ -443,7 +444,14 @@ public class MobAI {
|
||||
//send message to update run/walk state
|
||||
MovementManager.sendRWSSMsg(mob);
|
||||
}
|
||||
|
||||
}else {
|
||||
boolean walking = mob.isWalk();
|
||||
mob.setWalkMode(mob.guardCaptain.isWalk());
|
||||
if (walking != mob.isWalk()) {
|
||||
//send message to update run/walk state
|
||||
MovementManager.sendRWSSMsg(mob);
|
||||
}
|
||||
}
|
||||
switch (mob.behaviourType) {
|
||||
case GuardCaptain:
|
||||
GuardCaptainLogic(mob);
|
||||
|
||||
Reference in New Issue
Block a user