Spawnable: remove unused field

This commit is contained in:
Dylan K. Taylor 2020-05-04 13:10:23 +01:00
parent a73c54bdd0
commit 0eec536f97

View File

@ -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.
*/