Redstone Ore drops Redstone dust

This commit is contained in:
Shoghi Cervantes 2013-11-23 13:56:47 +01:00
parent ba7c9503d8
commit e4221b8552
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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();