Add correct drop for Podzol (#4573)

This commit is contained in:
Covered123 2021-11-14 11:15:36 -03:00 committed by GitHub
parent 7668171c56
commit 399824c31c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,13 @@ declare(strict_types=1);
namespace pocketmine\block;
use pocketmine\item\Item;
class Podzol extends Opaque{
public function getDropsForCompatibleTool(Item $item) : array{
return [
VanillaBlocks::DIRT()->asItem()
];
}
}