forked from MagicBane/Server
Minion agent type set properly.
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user