NPC guards no longer attack players

This commit is contained in:
2023-04-02 15:51:39 -05:00
parent f21e51f74a
commit 13d83c0003
+4 -1
View File
@@ -93,8 +93,11 @@ public class MobileFSM {
if (mob.isPlayerGuard())
guardAggro(mob, mob.getAggroTargetID());
else
else if (mob.isGuard()) {
awakeNPCguard(mob);
} else {
aggro(mob, mob.getAggroTargetID());
}
break;
case Patrol: