Skip to content

Commit

Permalink
Fix special snow wind checking
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Jan 8, 2024
1 parent 41ff068 commit a00b366
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ private boolean meltAndFreeze(ServerLevel level) {
if (!canSeeWindSnow(above)) {
above.setY(above.getY() + 1);
if (level.random.nextBoolean() || !canSeeWindSnow(above)) {
above.setY(above.getY() + 1);
if (level.random.nextBoolean() || !canSeeWindSnow(above)) {
return false;
}
Expand Down

0 comments on commit a00b366

Please sign in to comment.