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()); } }