mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 11:53:29 +01:00
parent
20ca7711ff
commit
99fc5e7cc9
1 changed files with 14 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue