Fixed custom blocks dropping the wrong thing with Super Breaker & Silk

Touch
This commit is contained in:
GJ
2012-07-04 10:33:20 -04:00
parent cefec723d0
commit 3f8268d848
2 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class Mining {
default:
if (ModChecks.isCustomMiningBlock(block)) {
Misc.dropItem(loc, item);
Misc.dropItem(loc, new ItemStack(block.getTypeId(), 1, (short) 0, block.getData()));
}
break;
}