pocketmine\item\Item::isPickaxe PHP Method

isPickaxe() public method

public isPickaxe ( )
    public function isPickaxe()
    {
        return false;
    }

Usage Example

Esempio n. 1
0
 public function getDrops(Item $item)
 {
     if ($item->isPickaxe() >= Tool::TIER_DIAMOND) {
         return [[Item::OBSIDIAN, 0, 1]];
     }
     return [];
 }
All Usage Examples Of pocketmine\item\Item::isPickaxe