Who put this here?

This commit is contained in:
Dylan K. Taylor 2017-08-18 18:59:34 +01:00
parent a7ad26426f
commit 384a4b3a09

View File

@ -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;
}
}