Skip to content

Commit

Permalink
Fixed missing .
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfebersahd authored Sep 14, 2024
1 parent 1ea4152 commit 135fa19
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 135fa19

Please sign in to comment.