From 829e9413e6c37481eb6c614adcd9086abb08262f Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Fri, 6 Mar 2026 13:13:43 +0100 Subject: [PATCH] Fix CORNER_OUTER_GLOBAL case --- .../de/steamwar/bausystem/region/dynamic/path/PathArea.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BauSystem/BauSystem_RegionDynamic/src/de/steamwar/bausystem/region/dynamic/path/PathArea.java b/BauSystem/BauSystem_RegionDynamic/src/de/steamwar/bausystem/region/dynamic/path/PathArea.java index c783e375..2d702cc6 100644 --- a/BauSystem/BauSystem_RegionDynamic/src/de/steamwar/bausystem/region/dynamic/path/PathArea.java +++ b/BauSystem/BauSystem_RegionDynamic/src/de/steamwar/bausystem/region/dynamic/path/PathArea.java @@ -60,6 +60,7 @@ public class PathArea implements Region.Area { .Case(Path, Global, Path, SIDE_GLOBAL, RotationCorrection.WithCorrection) .Case(Path, Path, Path, CENTER_NORMAL, RotationCorrection.UsingOrdinal) .Case(Global, Global, Global, CORNER_OUTER_GLOBAL, RotationCorrection.UsingOrdinal) + .Case(Global, Global, Path, CORNER_OUTER_GLOBAL, RotationCorrection.UsingOrdinal) .Case(Path, Path, Global, CORNER_INNER_GLOBAL, RotationCorrection.UsingOrdinal) ; @@ -82,8 +83,8 @@ public class PathArea implements Region.Area { protected enum Corner { NorthEast(Side.North, Side.East, 14, 0, 0, -90), NorthWest(Side.North, Side.West, 0, 0, 0, 90), - SouthEast(Side.South, Side.East, 14, 14, 180, 90), SouthWest(Side.South, Side.West, 0, 14, 180, -90), + SouthEast(Side.South, Side.East, 14, 14, 180, 90), ; protected final Side side1;