This commit is contained in:
Dylan K. Taylor
2022-06-27 17:15:16 +01:00
parent 541a624d48
commit c0e178c19c
3 changed files with 0 additions and 3 deletions

View File

@@ -55,7 +55,6 @@ abstract class BaseBanner extends Transparent{
parent::__construct($idInfo, $name, $breakInfo);
}
public function getRequiredStateDataBits() : int{ return 0; }
protected function decodeState(BlockDataReader $r) : void{

View File

@@ -42,7 +42,6 @@ class Door extends Transparent{
protected bool $hingeRight = false;
protected bool $open = false;
public function getRequiredStateDataBits() : int{ return 5; }
protected function decodeState(BlockDataReader $r) : void{

View File

@@ -28,7 +28,6 @@ use pocketmine\math\Facing;
trait AnyFacingTrait{
protected int $facing = Facing::DOWN;
public function getRequiredStateDataBits() : int{ return 3; }
protected function decodeState(BlockDataReader $r) : void{