From b90facb7d78a1e84f5e62bbeda9343671cde5ead Mon Sep 17 00:00:00 2001 From: yoyosource Date: Thu, 8 Dec 2022 20:46:03 +0100 Subject: [PATCH] Hotfix RedstoneWireAttribute Signed-off-by: yoyosource --- .../attributescopy/impl/type/RedstoneWireAttribute.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/RedstoneWireAttribute.java b/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/RedstoneWireAttribute.java index 03118c68..63463c9b 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/RedstoneWireAttribute.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/attributescopy/impl/type/RedstoneWireAttribute.java @@ -42,7 +42,7 @@ public class RedstoneWireAttribute implements BlockAttribute { for (BlockFace blockFace : blockData.getAllowedFaces()) { RedstoneWire.Connection connection = blockData.getFace(blockFace); if (connection != RedstoneWire.Connection.NONE) { - attributes.add(attribute + blockFace.name().toLowerCase() + " " + blockFace.name().toLowerCase()); + attributes.add(attribute + blockFace.name().toLowerCase() + " " + connection.name().toLowerCase()); } } }