Fixed bug relating to "empty" ItemStacks. Fixes #807

This commit is contained in:
GJ
2013-03-08 07:40:25 -05:00
parent 9618e45a11
commit bd45fff1b4
4 changed files with 14 additions and 12 deletions

View File

@ -72,7 +72,7 @@ public class Mining {
default:
if (ModUtils.isCustomMiningBlock(blockState)) {
Misc.dropItem(blockState.getLocation(), blockState.getData().toItemStack());
Misc.dropItem(blockState.getLocation(), blockState.getData().toItemStack(1));
}
return;
}