pocketmine\block\CocoaPod::getDrops PHP Method

getDrops() public method

public getDrops ( Item $item )
$item pocketmine\item\Item
    public function getDrops(Item $item)
    {
        $drops = [];
        if ($this->meta >= 8) {
            $drops[] = [Item::DYE, 3, 3];
        } else {
            $drops[] = [Item::DYE, 3, 1];
        }
        return $drops;
    }