pocketmine\block\DoubleRedSandstoneSlab::getDrops PHP Метод

getDrops() публичный Метод

public getDrops ( Item $item ) : array
$item pocketmine\item\Item
Результат array
    public function getDrops(Item $item) : array
    {
        if ($item->isPickaxe() >= 1) {
            return [[Item::RED_SANDSTONE_SLAB, $this->meta, 2]];
        } else {
            return [];
        }
    }
DoubleRedSandstoneSlab