pocketmine\block\DoubleRedSandstoneSlab::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() >= 1) {
            return [[Item::RED_SANDSTONE_SLAB, $this->meta, 2]];
        } else {
            return [];
        }
    }
DoubleRedSandstoneSlab