Skip to content

Commit

Permalink
fix: whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jun 23, 2024
1 parent c2cd69f commit 534ed07
Show file tree
Hide file tree
Showing 2 changed files with 2 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.83
mod_version=1.0.84

# Mod
mod_id=zenith
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public boolean place(FeaturePlaceContext<Config> context) {
int count = placeAbove.size();
float chance = count == 1 ? 0.3F : count == 2 ? 0.7F : 1;
if (count >= 3 || rand.nextFloat() < chance) {
setBlock(origin.above(5), context);
setBlock(origin.above(4), context);
}
}

Expand Down

0 comments on commit 534ed07

Please sign in to comment.