Fix drops for stone types added in 1.8

This commit is contained in:
astemus 2015-05-28 19:14:11 -04:00
parent ecfdd75e36
commit ccb2dc0afd

View File

@ -64,7 +64,12 @@ public class Mining {
case QUARTZ_ORE:
case REDSTONE_ORE:
case STONE:
if (blockState.getData().getData() == 0x0) {
Misc.dropItem(blockState.getLocation(), new ItemStack(blockType));
}
else {
handleMiningDrops(blockState);
}
return;
default: