From 384a4b3a0952d3bc5803f0704935d8917541ec25 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 18 Aug 2017 18:59:34 +0100 Subject: [PATCH] Who put this here? --- src/pocketmine/block/NetherBrickStairs.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pocketmine/block/NetherBrickStairs.php b/src/pocketmine/block/NetherBrickStairs.php index a912d95a5..67f380cc7 100644 --- a/src/pocketmine/block/NetherBrickStairs.php +++ b/src/pocketmine/block/NetherBrickStairs.php @@ -29,6 +29,10 @@ class NetherBrickStairs extends Stair{ protected $id = self::NETHER_BRICK_STAIRS; + public function __construct(int $meta = 0){ + $this->meta = $meta; + } + public function getName() : string{ return "Nether Brick Stairs"; } @@ -41,8 +45,4 @@ class NetherBrickStairs extends Stair{ return Tool::TYPE_PICKAXE; } - public function __construct(int $meta = 0){ - $this->meta = $meta; - } - } \ No newline at end of file