From e4221b8552e3295ed89460ea2282394c3be14c66 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Sat, 23 Nov 2013 13:56:47 +0100 Subject: [PATCH] Redstone Ore drops Redstone dust --- src/material/block/ore/GlowingRedstoneOre.php | 2 +- src/material/block/ore/RedstoneOre.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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();