Bugfix for contract-less npc owners.

This commit is contained in:
2023-04-24 17:08:03 -04:00
parent de7e3ba73d
commit c60a4d8d39
+4 -1
View File
@@ -274,7 +274,10 @@ public class NPC extends AbstractCharacter {
this.buildingLevel = (rs.getInt("npc_buildingLevel"));
this.setParentZone(ZoneManager.getZoneByUUID(this.parentZoneID));
this.nameOverride = rs.getString("npc_name") + " the " + this.getContract().getName();
if (this.contract != null)
this.nameOverride = rs.getString("npc_name") + " the " + this.getContract().getName();
else
this.nameOverride = rs.getString("npc_name");
}catch(Exception e){
Logger.error(e);