This commit is contained in:
Daniel Mills
2020-11-23 14:47:16 -05:00
parent ac04ef34d7
commit ad01a157ce
5 changed files with 14 additions and 12 deletions

View File

@@ -52,7 +52,7 @@ public class EngineCompositeGenerator extends ChunkGenerator implements IrisAcce
this.production = production;
this.dimensionHint = hint;
initialized = new AtomicBoolean(false);
art = J.ar(this::tick, 20);
art = J.ar(this::tick, 100);
populators = new KList<BlockPopulator>().qadd(new BlockPopulator() {
@Override
public void populate(@NotNull World world, @NotNull Random random, @NotNull Chunk chunk) {
@@ -106,7 +106,7 @@ public class EngineCompositeGenerator extends ChunkGenerator implements IrisAcce
try
{
hotloader.check();
J.a(() -> hotloader.check());
getComposite().clean();
}