mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-15 16:05:28 +00:00
Item: removed isTool()
this should be replaced with `instanceof Tool`.
This commit is contained in:
parent
0247dff909
commit
3095eb544d
@ -724,13 +724,6 @@ class Item implements ItemIds, \JsonSerializable{
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isTool(){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns what type of block-breaking tool this is. Blocks requiring the same tool type as the item will break
|
* Returns what type of block-breaking tool this is. Blocks requiring the same tool type as the item will break
|
||||||
* faster (except for blocks requiring no tool, which break at the same speed regardless of the tool used)
|
* faster (except for blocks requiring no tool, which break at the same speed regardless of the tool used)
|
||||||
|
@ -64,10 +64,6 @@ abstract class Tool extends Durable{
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function isTool(){
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getMiningEfficiency(Block $block) : float{
|
public function getMiningEfficiency(Block $block) : float{
|
||||||
$efficiency = 1;
|
$efficiency = 1;
|
||||||
if(($block->getToolType() & $this->getBlockToolType()) !== 0){
|
if(($block->getToolType() & $this->getBlockToolType()) !== 0){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user