Browse Source

Moved agent type to top of constructor.

feature-workorder
FatBoy-DOTC 1 year ago committed by MagicBot
parent
commit
2843b86a93
  1. 2
      src/engine/objects/Mob.java

2
src/engine/objects/Mob.java

@ -103,6 +103,7 @@ public class Mob extends AbstractIntelligenceAgent { @@ -103,6 +103,7 @@ public class Mob extends AbstractIntelligenceAgent {
this.dbID = rs.getInt(1);
this.loadID = rs.getInt("mob_mobbaseID");
this.gridObjectType = GridObjectType.DYNAMIC;
this.agentType = AIAgentType.MOBILE;
this.spawnRadius = rs.getFloat("mob_spawnRadius");
this.spawnTime = rs.getInt("mob_spawnTime");
@ -151,7 +152,6 @@ public class Mob extends AbstractIntelligenceAgent { @@ -151,7 +152,6 @@ public class Mob extends AbstractIntelligenceAgent {
this.currentID = this.dbID;
this.agentType = AIAgentType.MOBILE;
} catch (Exception e) {
Logger.error(e + " " + this.dbID);
}

Loading…
Cancel
Save