mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2025-03-12 14:50:22 +01:00
Temporary workaround for exception spam
This commit is contained in:
parent
6bcae0f7dd
commit
74df4818e4
@ -253,6 +253,15 @@ public class EventListen implements Listener {
|
|||||||
new double[] { (event.getChunk().getX() << 4) - 0.5, 0, (event.getChunk().getZ() << 4) - 0.5 },
|
new double[] { (event.getChunk().getX() << 4) - 0.5, 0, (event.getChunk().getZ() << 4) - 0.5 },
|
||||||
new double[] { (event.getChunk().getX() + 1 << 4) + 0.5, 256,
|
new double[] { (event.getChunk().getX() + 1 << 4) + 0.5, 256,
|
||||||
(event.getChunk().getZ() + 1 << 4) + 0.5 }));
|
(event.getChunk().getZ() + 1 << 4) + 0.5 }));
|
||||||
|
if (SUPPORTS_UNLOAD_CHUNK_ENTITIES == null) {
|
||||||
|
try {
|
||||||
|
event.getChunk().getEntities();
|
||||||
|
SUPPORTS_UNLOAD_CHUNK_ENTITIES = true;
|
||||||
|
} catch (Throwable t) {
|
||||||
|
SUPPORTS_UNLOAD_CHUNK_ENTITIES = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (SUPPORTS_UNLOAD_CHUNK_ENTITIES) {
|
||||||
for (Entity entity : event.getChunk().getEntities()) {
|
for (Entity entity : event.getChunk().getEntities()) {
|
||||||
NPC npc = CitizensAPI.getNPCRegistry().getNPC(entity);
|
NPC npc = CitizensAPI.getNPCRegistry().getNPC(entity);
|
||||||
// XXX npc#isSpawned() checks valid status which is now inconsistent on chunk unload
|
// XXX npc#isSpawned() checks valid status which is now inconsistent on chunk unload
|
||||||
@ -262,6 +271,7 @@ public class EventListen implements Listener {
|
|||||||
|
|
||||||
toDespawn.add(npc);
|
toDespawn.add(npc);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (toDespawn.isEmpty())
|
if (toDespawn.isEmpty())
|
||||||
return;
|
return;
|
||||||
unloadNPCs(event, toDespawn);
|
unloadNPCs(event, toDespawn);
|
||||||
@ -956,4 +966,6 @@ public class EventListen implements Listener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static boolean SUPPORT_STOP_USE_ITEM = true;
|
private static boolean SUPPORT_STOP_USE_ITEM = true;
|
||||||
|
|
||||||
|
private static Boolean SUPPORTS_UNLOAD_CHUNK_ENTITIES;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user