forked from MagicBane/Server
should never pull directly form cache
This commit is contained in:
@@ -807,10 +807,11 @@ public class Building extends AbstractWorldObject {
|
||||
|
||||
if (this.ownerUUID == 0)
|
||||
return null;
|
||||
if (this.ownerIsNPC)
|
||||
return NPC.getFromCache(this.ownerUUID);
|
||||
|
||||
return PlayerCharacter.getFromCache(this.ownerUUID);
|
||||
if (this.ownerIsNPC)
|
||||
return NPC.getNPC(this.ownerUUID);
|
||||
|
||||
return PlayerCharacter.getPlayerCharacter(this.ownerUUID);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user