diff --git a/src/main/java/com/volmit/iris/core/commands/CommandPregen.java b/src/main/java/com/volmit/iris/core/commands/CommandPregen.java index a221c7e09..32906de2a 100644 --- a/src/main/java/com/volmit/iris/core/commands/CommandPregen.java +++ b/src/main/java/com/volmit/iris/core/commands/CommandPregen.java @@ -50,7 +50,7 @@ public class CommandPregen implements DecreeExecutor { int w = (radius >> 9 + 1) * 2; IrisToolbelt.pregenerate(PregenTask .builder() - .center(new Position2(center)) + .center(new Position2(center.getBlockX() >> 9, center.getBlockZ() >> 9)) .width(w) .height(w) .build(), world);