pocketmine\block\Gold::getDrops PHP Method

getDrops() public method

public getDrops ( Item $item ) : array
$item pocketmine\item\Item
return array
    public function getDrops(Item $item) : array
    {
        if ($item->isPickaxe() >= 4) {
            return [[Item::GOLD_BLOCK, 0, 1]];
        } else {
            return [];
        }
    }