From 04ee94dc91e95b67a763417311a0a7df3b2eaf4e Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Tue, 9 Dec 2014 15:05:36 +0100 Subject: [PATCH] Fixed #2388 --- src/pocketmine/level/format/generic/EmptyChunkSection.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pocketmine/level/format/generic/EmptyChunkSection.php b/src/pocketmine/level/format/generic/EmptyChunkSection.php index 11fc28f0f..03a31ce8e 100644 --- a/src/pocketmine/level/format/generic/EmptyChunkSection.php +++ b/src/pocketmine/level/format/generic/EmptyChunkSection.php @@ -59,6 +59,10 @@ class EmptyChunkSection implements ChunkSection{ return "\x00\x00\x00\x00\x00\x00\x00\x00"; } + final public function getFullBlock($x, $y, $z){ + return 0; + } + final public function getBlock($x, $y, $z, &$id = null, &$meta = null){ $id = 0; $meta = 0;