Bookshelf: fix drop count

This commit is contained in:
Dylan K. Taylor 2019-07-11 14:14:01 +01:00
parent 39bcd2ec3d
commit 12ee885432

View File

@ -34,7 +34,7 @@ class Bookshelf extends Solid{
public function getDropsForCompatibleTool(Item $item) : array{ public function getDropsForCompatibleTool(Item $item) : array{
return [ return [
VanillaItems::BOOK() VanillaItems::BOOK()->setCount(3)
]; ];
} }