diff --git a/src/constants/BlockIDs.php b/src/constants/BlockIDs.php index 77b098fbe7..6f9ba90768 100644 --- a/src/constants/BlockIDs.php +++ b/src/constants/BlockIDs.php @@ -129,6 +129,7 @@ define("FENCE", 85); define("NETHERRACK", 87); define("SOUL_SAND", 88); +define("GLOWSTONE", 89); define("GLOWSTONE_BLOCK", 89); define("CAKE_BLOCK", 92); diff --git a/src/material/block/solid/Glowstone.php b/src/material/block/solid/Glowstone.php index 886657d7a1..aaf159d0bd 100644 --- a/src/material/block/solid/Glowstone.php +++ b/src/material/block/solid/Glowstone.php @@ -29,5 +29,10 @@ class GlowstoneBlock extends SolidBlock{ public function __construct(){ parent::__construct(GLOWSTONE_BLOCK, 0, "Glowstone"); } - + + public function getDrops(Item $item, Player $player){ + return array( + array(GLOWSTONE_DUST, 0, mt_rand(2, 4)), + ); + } } \ No newline at end of file