9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-06 15:51:30 +00:00

Merge pull request #1128 from VolmitSoftware/dev

3.5.1
This commit is contained in:
Aidan Aeternum
2025-01-04 09:57:30 -08:00
committed by GitHub
2 changed files with 3 additions and 7 deletions

View File

@@ -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 =============================

View File

@@ -60,15 +60,11 @@ public class IrisDepositModifier extends EngineAssignedModifier<BlockData> {
}
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();
}