mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
Fixed mis-uses of Item->isTool()
this has been wrongly used to indicate a durable item, but not just tools are durable items.
This commit is contained in:
@ -164,7 +164,7 @@ class Item implements ItemIds, \JsonSerializable{
|
||||
|
||||
public static function getCreativeItemIndex(Item $item) : int{
|
||||
foreach(Item::$creative as $i => $d){
|
||||
if($item->equals($d, !$item->isTool())){
|
||||
if($item->equals($d, !($item instanceof Durable))){
|
||||
return $i;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user