Clean up Tool garbage leftovers

these were intended to be removed long ago, but other things came up and durability handling still depended on them.
This commit is contained in:
Dylan K. Taylor
2018-05-11 09:23:51 +01:00
parent b21572774a
commit 083ac8a770
7 changed files with 0 additions and 48 deletions

View File

@ -738,30 +738,6 @@ class Item implements ItemIds, \JsonSerializable{
return 0;
}
public function isPickaxe(){
return false;
}
public function isAxe(){
return false;
}
public function isSword(){
return false;
}
public function isShovel(){
return false;
}
public function isHoe(){
return false;
}
public function isShears(){
return false;
}
public function getMiningEfficiency(Block $block) : float{
return 1;
}