Skip to content

Commit e294761

Browse files
if statement brackets
Co-authored-by: JustAHuman-xD <65748158+JustAHuman-xD@users.noreply.github.com>
1 parent 6da71ae commit e294761

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/io/github/thebusybiscuit/slimefun4/implementation/handlers/SimpleBlockBreakHandler.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ public void onAndroidBreak(AndroidMineEvent e) {
5858
public void onExplode(Block b, List<ItemStack> drops) {
5959
onBlockBreak(b);
6060
SlimefunItem sfItem = BlockStorage.check(b);
61-
if (sfItem != null)
61+
if (sfItem != null) {
6262
drops.addAll(sfItem.getDrops());
63+
}
6364
}
6465

6566
}

0 commit comments

Comments
 (0)