Browse Source

Improved error logging.

master
MagicBot 2 years ago
parent
commit
fafd77c661
  1. 2
      src/engine/objects/NPC.java

2
src/engine/objects/NPC.java

@ -249,7 +249,7 @@ public class NPC extends AbstractCharacter { @@ -249,7 +249,7 @@ public class NPC extends AbstractCharacter {
this.name += " the " + this.contract.getName();
}catch(Exception e){
Logger.error(e);
Logger.error("NPC: " + this.dbID + " :" + e);
e.printStackTrace();
}

Loading…
Cancel
Save