Gracefully handle aura chunk packet exceptions

Closes #220
This commit is contained in:
Ell 2021-09-26 16:33:05 +02:00
parent 20ca7711ff
commit 99fc5e7cc9

View file

@ -1,5 +1,6 @@
package de.ellpeck.naturesaura.packet;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.chunk.AuraChunk;
import de.ellpeck.naturesaura.events.ClientEvents;
@ -63,6 +64,7 @@ public class PacketAuraChunk {
}
public boolean tryHandle(World world) {
try {
Chunk chunk = world.getChunk(this.chunkX, this.chunkZ);
if (chunk.isEmpty())
return false;
@ -71,5 +73,9 @@ public class PacketAuraChunk {
return false;
auraChunk.setSpots(this.drainSpots);
return true;
} catch (Exception e) {
NaturesAura.LOGGER.error("There was an error handling an aura chunk packet", e);
return true;
}
}
}