diff --git a/src/pocketmine/level/Level.php b/src/pocketmine/level/Level.php index 8d7c21a0d..eeeee525b 100644 --- a/src/pocketmine/level/Level.php +++ b/src/pocketmine/level/Level.php @@ -792,7 +792,7 @@ class Level implements ChunkManager, Metadatable{ foreach($this->getChunkPlayers($chunkX, $chunkZ) as $p){ $p->onChunkChanged($chunk); } - }else{ + }elseif(!empty($blocks)){ $this->sendBlocks($this->getChunkPlayers($chunkX, $chunkZ), $blocks, UpdateBlockPacket::FLAG_ALL); } }