Minion agent type set properly.

This commit is contained in:
2023-09-01 12:38:23 -04:00
parent 2843b86a93
commit 2f6137f8df
+5 -4
View File
@@ -1545,6 +1545,10 @@ public class Mob extends AbstractIntelligenceAgent {
this.spawnTime = 600;
this.guardedCity = ZoneManager.getCityAtLocation(this.building.getLoc());
break;
case GuardMinion:
this.agentType = AIAgentType.GUARDMINION;
this.guardedCity = ZoneManager.getCityAtLocation(this.building.getLoc());
break;
case GuardWallArcher:
this.agentType = AIAgentType.GUARDWALLARCHER;
this.spawnTime = 450;
@@ -1799,10 +1803,7 @@ public class Mob extends AbstractIntelligenceAgent {
public boolean isPlayerGuard() {
if (EnumSet.of(AIAgentType.GUARDCAPTAIN, AIAgentType.GUARDMINION, AIAgentType.GUARDWALLARCHER).contains(this.agentType))
return true;
else
return false;
return EnumSet.of(AIAgentType.GUARDCAPTAIN, AIAgentType.GUARDMINION, AIAgentType.GUARDWALLARCHER).contains(this.agentType);
}
public int getLastMobPowerToken() {