From 3a13fc7bb92e080a4cd6c388596c3b18d1d1ee9e Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Fri, 1 Aug 2025 17:51:19 +0200 Subject: [PATCH] Reduce MAX_BLOCKS of SelectAdjacent --- .../steamwar/bausystem/features/worldedit/SelectAdjacent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/worldedit/SelectAdjacent.java b/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/worldedit/SelectAdjacent.java index 9afcd59e..c92b5aa2 100644 --- a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/worldedit/SelectAdjacent.java +++ b/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/worldedit/SelectAdjacent.java @@ -97,7 +97,7 @@ public class SelectAdjacent implements Listener { private class Selector { - private static final int MAX_BLOCKS = 1_000_000; + private static final int MAX_BLOCKS = 100_000; private int minX; private int minY;