9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-19 15:09:18 +00:00

fix regen command

This commit is contained in:
Julian Krings
2025-11-06 16:22:02 +01:00
parent 8cea165a29
commit a226fea9e2

View File

@@ -78,6 +78,7 @@ import java.util.Arrays;
import java.util.Date; import java.util.Date;
import java.util.Objects; import java.util.Objects;
import java.util.concurrent.CountDownLatch; import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executors;
import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.Supplier; import java.util.function.Supplier;
@@ -174,14 +175,16 @@ public class CommandStudio implements DecreeExecutor {
PlatformChunkGenerator plat = IrisToolbelt.access(world); PlatformChunkGenerator plat = IrisToolbelt.access(world);
Engine engine = plat.getEngine(); Engine engine = plat.getEngine();
DecreeContext.touch(sender); DecreeContext.touch(sender);
try (SyncExecutor executor = new SyncExecutor(20)) { try (SyncExecutor executor = new SyncExecutor(20);
var service = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors())
) {
int x = loc.getBlockX() >> 4; int x = loc.getBlockX() >> 4;
int z = loc.getBlockZ() >> 4; int z = loc.getBlockZ() >> 4;
int rad = engine.getMantle().getRadius(); int rad = engine.getMantle().getRadius();
var mantle = engine.getMantle().getMantle(); var mantle = engine.getMantle().getMantle();
var chunkMap = new KMap<Position2, MantleChunk>(); var chunkMap = new KMap<Position2, MantleChunk>();
ParallelRadiusJob prep = new ParallelRadiusJob(Integer.MAX_VALUE) { ParallelRadiusJob prep = new ParallelRadiusJob(Integer.MAX_VALUE, service) {
@Override @Override
protected void execute(int rX, int rZ) { protected void execute(int rX, int rZ) {
if (Math.abs(rX) <= radius && Math.abs(rZ) <= radius) { if (Math.abs(rX) <= radius && Math.abs(rZ) <= radius) {
@@ -204,7 +207,7 @@ public class CommandStudio implements DecreeExecutor {
pLatch.await(); pLatch.await();
ParallelRadiusJob job = new ParallelRadiusJob(Integer.MAX_VALUE) { ParallelRadiusJob job = new ParallelRadiusJob(Integer.MAX_VALUE, service) {
@Override @Override
protected void execute(int x, int z) { protected void execute(int x, int z) {
plat.injectChunkReplacement(world, x, z, executor); plat.injectChunkReplacement(world, x, z, executor);