Browse Source

Bypass npc guild leaders in override..

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

2
src/engine/objects/NPC.java

@ -245,7 +245,7 @@ public class NPC extends AbstractCharacter { @@ -245,7 +245,7 @@ public class NPC extends AbstractCharacter {
// Name override for npc
if (wordCount(this.name) < 2)
if (wordCount(this.name) < 2 && this.contract != null)
this.name += " the " + this.contract.getName();
}catch(Exception e){

Loading…
Cancel
Save