We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da71ae commit e294761Copy full SHA for e294761
src/main/java/io/github/thebusybiscuit/slimefun4/implementation/handlers/SimpleBlockBreakHandler.java
@@ -58,8 +58,9 @@ public void onAndroidBreak(AndroidMineEvent e) {
58
public void onExplode(Block b, List<ItemStack> drops) {
59
onBlockBreak(b);
60
SlimefunItem sfItem = BlockStorage.check(b);
61
- if (sfItem != null)
+ if (sfItem != null) {
62
drops.addAll(sfItem.getDrops());
63
+ }
64
}
65
66
0 commit comments