Browse Source

More useful error information.

master
MagicBot 2 years ago
parent
commit
40b7546946
  1. 5
      src/engine/objects/Mob.java

5
src/engine/objects/Mob.java

@ -228,14 +228,13 @@ public class Mob extends AbstractIntelligenceAgent { @@ -228,14 +228,13 @@ public class Mob extends AbstractIntelligenceAgent {
else
this.contract = DbManager.ContractQueries.GET_CONTRACT(contractID);
if (this.contract != null) if (NPC.ISGuardCaptain(contract.getContractID())) {
if (this.contract != null && NPC.ISGuardCaptain(contract.getContractID())) {
this.spawnTime = 60 * 15;
this.isPlayerGuard = true;
}
int guildID = rs.getInt("mob_guildUID");
if (this.building != null)
this.guild = this.building.getGuild();
else
@ -283,7 +282,7 @@ public class Mob extends AbstractIntelligenceAgent { @@ -283,7 +282,7 @@ public class Mob extends AbstractIntelligenceAgent {
this.BehaviourType = MobBehaviourType.valueOf(rs.getString("fsm"));
} catch (Exception e) {
Logger.error(currentID + "");
Logger.error(e + " " + this.dbID );
}
try {

Loading…
Cancel
Save