diff --git a/src/main/java/net/minestom/server/entity/Player.java b/src/main/java/net/minestom/server/entity/Player.java index fa1be0e16..1f1515b40 100644 --- a/src/main/java/net/minestom/server/entity/Player.java +++ b/src/main/java/net/minestom/server/entity/Player.java @@ -1482,11 +1482,12 @@ public class Player extends LivingEntity implements CommandSender, Localizable, final UnloadChunkPacket unloadChunkPacket = new UnloadChunkPacket(); unloadChunkPacket.chunkX = chunkX; unloadChunkPacket.chunkZ = chunkZ; - playerConnection.sendPacket(unloadChunkPacket); + //playerConnection.sendPacket(unloadChunkPacket); final Chunk chunk = instance.getChunk(chunkX, chunkZ); - if (chunk != null) + if (chunk != null) { chunk.removeViewer(this); + } } // Load new chunks