diff --git a/src/material/block/ore/GlowingRedstoneOre.php b/src/material/block/ore/GlowingRedstoneOre.php index 5089e3f6f..3086c7c46 100644 --- a/src/material/block/ore/GlowingRedstoneOre.php +++ b/src/material/block/ore/GlowingRedstoneOre.php @@ -53,7 +53,7 @@ class GlowingRedstoneOreBlock extends SolidBlock{ public function getDrops(Item $item, Player $player){ if($item->isPickaxe() >= 4){ return array( - //array(331, 4, mt_rand(4, 5)), + array(331, 4, mt_rand(4, 5)), ); }else{ return array(); diff --git a/src/material/block/ore/RedstoneOre.php b/src/material/block/ore/RedstoneOre.php index ddcf135d6..9deb05e7d 100644 --- a/src/material/block/ore/RedstoneOre.php +++ b/src/material/block/ore/RedstoneOre.php @@ -37,7 +37,7 @@ class RedstoneOreBlock extends SolidBlock{ public function getDrops(Item $item, Player $player){ if($item->isPickaxe() >= 2){ return array( - //array(331, 4, mt_rand(4, 5)), + array(331, 4, mt_rand(4, 5)), ); }else{ return array();