diff --git a/src/block/NetherReactor.php b/src/block/NetherReactor.php index 96e5f0640..69e21690b 100644 --- a/src/block/NetherReactor.php +++ b/src/block/NetherReactor.php @@ -29,20 +29,6 @@ use pocketmine\item\VanillaItems; class NetherReactor extends Opaque{ - protected int $state = BlockLegacyMetadata::NETHER_REACTOR_INACTIVE; - - protected function writeStateToMeta() : int{ - return $this->state; - } - - public function readStateFromData(int $id, int $stateMeta) : void{ - $this->state = BlockDataSerializer::readBoundedInt("state", $stateMeta, 0, 2); - } - - public function getStateBitmask() : int{ - return 0b11; - } - public function getDropsForCompatibleTool(Item $item) : array{ return [ VanillaItems::IRON_INGOT()->setCount(6),