null check for building owner.

This commit is contained in:
2023-05-01 14:10:09 -04:00
parent 59cd2b0dc1
commit c0521ba2b7
+6 -2
View File
@@ -240,9 +240,13 @@ public class NPC extends AbstractCharacter {
submitUpgradeJob();
this.name = rs.getString("npc_name");
if(this.building != null && this.building.getOwner().getObjectType().equals(GameObjectType.PlayerCharacter)){
// Name override for player owned npcs
if (this.building != null &&
this.building.getOwner() != null &&
this.building.getOwner().getObjectType().equals(GameObjectType.PlayerCharacter))
this.name += " the " + this.contract.getName();
}
}catch(Exception e){
Logger.error(e);