Skip to content

Commit

Permalink
Merge pull request #1128 from VolmitSoftware/dev
Browse files Browse the repository at this point in the history
3.5.1
  • Loading branch information
AvianAeternum authored Jan 4, 2025
2 parents 5cf0ac9 + d58f497 commit 487d0ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ plugins {
id "de.undercouch.download" version "5.0.1"
}

version '3.5.0-1.19.2-1.21.3'
version '3.5.1-1.19.2-1.21.3'

// ADD YOURSELF AS A NEW LINE IF YOU WANT YOUR OWN BUILD TASK GENERATED
// ======================== WINDOWS =============================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,11 @@ public void generateDeposits(RNG rx, Hunk<BlockData> terrain, int x, int z, bool
}

for (IrisDepositGenerator k : region.getDeposits()) {
for (int l = 0; l < ro.i(k.getMinPerChunk(), k.getMaxPerChunk()); l++) {
burst.queue(() -> generate(k, terrain, ro, x, z, false, context));
}
burst.queue(() -> generate(k, terrain, ro, x, z, false, context));
}

for (IrisDepositGenerator k : biome.getDeposits()) {
for (int l = 0; l < ro.i(k.getMinPerChunk(), k.getMaxPerChunk()); l++) {
burst.queue(() -> generate(k, terrain, ro, x, z, false, context));
}
burst.queue(() -> generate(k, terrain, ro, x, z, false, context));
}
burst.complete();
}
Expand Down

0 comments on commit 487d0ac

Please sign in to comment.