diff --git a/src/pocketmine/level/format/Chunk.php b/src/pocketmine/level/format/Chunk.php index 2aa8c0740..c121d5a21 100644 --- a/src/pocketmine/level/format/Chunk.php +++ b/src/pocketmine/level/format/Chunk.php @@ -54,10 +54,10 @@ class Chunk{ protected $height = Chunk::MAX_SUBCHUNKS; /** @var \SplFixedArray|SubChunkInterface[] */ - protected $subChunks = []; + protected $subChunks; /** @var EmptySubChunk */ - protected $emptySubChunk = null; + protected $emptySubChunk; /** @var Tile[] */ protected $tiles = [];