safe NPC profits

This commit is contained in:
2024-08-31 19:29:03 -05:00
parent 25d70cca4f
commit 1e29971b3c
2 changed files with 18 additions and 7 deletions
+12
View File
@@ -193,6 +193,18 @@ public class NPC extends AbstractCharacter {
serializeForClientMsgOtherPlayer(npc, writer);
}
public boolean isInSafeZone() {
Zone zone = ZoneManager.findSmallestZone(this.getLoc());
if (zone != null) {
return zone.getSafeZone() == (byte) 1;
}
return false;
//return this.safeZone;
}
public static void serializeForClientMsgOtherPlayer(NPC npc, ByteBufferWriter writer)
throws SerializationException {