"Acacia Leaves", self::DARK_OAK => "Dark Oak Leaves" ]; return $names[$this->getVariant()] ?? "Unknown"; } public function getDrops(Item $item) : array{ $variantMeta = $this->getVariant(); if($item->isShears()){ return [ ItemFactory::get($this->getItemId(), $variantMeta, 1) ]; }elseif(mt_rand(1, 20) === 1){ //Saplings return [ ItemFactory::get(Item::SAPLING, $variantMeta + 4, 1) ]; } return []; } }