Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jun 23, 2024
1 parent a208e94 commit 2b87aac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
org.gradle.debug=false

mod_version=1.0.86
mod_version=1.0.87

# Mod
mod_id=zenith
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ public boolean place(FeaturePlaceContext<Config> context) {
BlockPos imm1 = origin.relative(d);
if (i < 2 || (potentiallyPlaceAbove.contains(d) && rand.nextFloat() < 0.7)) {
setBlock(imm1.above(i), context);
placedAbove.add(d);
if (i == 2) {
placedAbove.add(d);
}
}
}
}
Expand Down

0 comments on commit 2b87aac

Please sign in to comment.