Skip to content

Commit

Permalink
if statement brackets
Browse files Browse the repository at this point in the history
Co-authored-by: JustAHuman-xD <[email protected]>
  • Loading branch information
iTwins and JustAHuman-xD authored Sep 6, 2023
1 parent 6da71ae commit e294761
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ public void onAndroidBreak(AndroidMineEvent e) {
public void onExplode(Block b, List<ItemStack> drops) {
onBlockBreak(b);
SlimefunItem sfItem = BlockStorage.check(b);
if (sfItem != null)
if (sfItem != null) {
drops.addAll(sfItem.getDrops());
}
}

}

0 comments on commit e294761

Please sign in to comment.