Removed WoodenTool classes

These were only needed for their fuel properties, which are the same for all tools of the wooden tier anyway.
This commit is contained in:
Dylan K. Taylor
2017-12-12 13:39:07 +00:00
parent b903161a5d
commit e2e6b7516a
7 changed files with 12 additions and 179 deletions

View File

@ -97,4 +97,12 @@ abstract class TieredTool extends Tool{
protected function getBaseMiningEfficiency() : float{
return self::getBaseMiningEfficiencyFromTier($this->tier);
}
public function getFuelTime() : int{
if($this->tier === self::TIER_WOODEN){
return 200;
}
return 0;
}
}