Skip to content

Commit

Permalink
fixed missing ) too
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfebersahd authored Sep 14, 2024
1 parent 135fa19 commit 2216f87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ private void processSinking() {
if (!(craft instanceof SinkingCraft))
continue;

if (craft.getHitBox().isEmpty() || craft.getHitBox().getMinY() < (craft.getWorld().getMinHeight() +5 ) {
if (craft.getHitBox().isEmpty() || craft.getHitBox().getMinY() < (craft.getWorld().getMinHeight() +5 )) {
CraftManager.getInstance().release(craft, CraftReleaseEvent.Reason.SUNK, false);
continue;
}
Expand Down

0 comments on commit 2216f87

Please sign in to comment.