Remove variant parameters from TieredTool

This commit is contained in:
Dylan K. Taylor
2018-10-26 18:16:31 +01:00
parent f438736af5
commit 327c8361bd
2 changed files with 27 additions and 27 deletions

View File

@ -33,8 +33,8 @@ abstract class TieredTool extends Tool{
/** @var int */
protected $tier;
public function __construct(int $id, int $meta, string $name, int $tier){
parent::__construct($id, $meta, $name);
public function __construct(int $id, string $name, int $tier){
parent::__construct($id, 0, $name);
$this->tier = $tier;
}