From 0eec536f97a799ac3fc51b56266f10f51caee38d Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 4 May 2020 13:10:23 +0100 Subject: [PATCH] Spawnable: remove unused field --- src/block/tile/Spawnable.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/block/tile/Spawnable.php b/src/block/tile/Spawnable.php index a4851b04f..c81b71138 100644 --- a/src/block/tile/Spawnable.php +++ b/src/block/tile/Spawnable.php @@ -24,7 +24,6 @@ declare(strict_types=1); namespace pocketmine\block\tile; use pocketmine\nbt\tag\CompoundTag; -use pocketmine\network\mcpe\protocol\serializer\NetworkNbtSerializer; use pocketmine\network\mcpe\protocol\types\CacheableNbt; use function get_class; @@ -37,9 +36,6 @@ abstract class Spawnable extends Tile{ /** @var bool */ private $dirty = true; //default dirty, until it's been spawned appropriately on the world - /** @var NetworkNbtSerializer|null */ - private static $nbtWriter = null; - /** * Returns whether the tile needs to be respawned to viewers. */