From 0b633fc8fe91b8de6b450e01edbea1e7ab2f4e0b Mon Sep 17 00:00:00 2001 From: yoyosource Date: Thu, 8 Dec 2022 21:18:05 +0100 Subject: [PATCH] Hotfix WallAttribute Signed-off-by: yoyosource --- .../features/attributescopy/impl/type/WallAttribute.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/WallAttribute.java b/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/WallAttribute.java index 708a6bbc..73fa320c 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/WallAttribute.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/WallAttribute.java @@ -44,7 +44,7 @@ public class WallAttribute implements BlockAttribute { public void copy(List attributes, Wall blockData) { if (blockData.isUp()) attributes.add(attribute1); for (BlockFace face : faces) { - attributes.add(attribute2 + face.name().toLowerCase() + " " + blockData.getHeight(face)); + attributes.add(attribute2 + face.name().toLowerCase() + " " + blockData.getHeight(face).name().toLowerCase()); } }