From a0c7f024ad519b7eeadc651faebe3fc810c7eeb8 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Sun, 24 Sep 2023 16:54:11 +0200 Subject: [PATCH] Fix Testblock paste Signed-off-by: yoyosource --- BauSystem_Main/src/de/steamwar/bausystem/region/Region.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/region/Region.java b/BauSystem_Main/src/de/steamwar/bausystem/region/Region.java index 496b89f6..c6f8b5c7 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/region/Region.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/region/Region.java @@ -452,7 +452,10 @@ public class Region { pastePoint = pastePoint.add(0, 0, 1); } if (schematicType.getKuerzel().equalsIgnoreCase("ws")) { - pastePoint = pastePoint.add(-1, 0, 0); + pastePoint = pastePoint.add(-1, 0, 1); + } + if (schematicType.getKuerzel().equalsIgnoreCase("as")) { + pastePoint = pastePoint.add(-1, 0, 1); } } pasteBuilder.pastePoint(pastePoint);