From 6b21f160bd3a97300935be8499e6739eacbd1ce1 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 8 Dec 2019 11:07:14 +0000 Subject: [PATCH] Chunk: fix type docs for NBTentities and NBTtiles --- src/world/format/Chunk.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/format/Chunk.php b/src/world/format/Chunk.php index b91263130..fad5d1393 100644 --- a/src/world/format/Chunk.php +++ b/src/world/format/Chunk.php @@ -83,10 +83,10 @@ class Chunk{ /** @var string */ protected $biomeIds; - /** @var CompoundTag[] */ + /** @var CompoundTag[]|null */ protected $NBTtiles = []; - /** @var CompoundTag[] */ + /** @var CompoundTag[]|null */ protected $NBTentities = []; /**