diff --git a/SchematicSystem_Core/src/SchematicSystem.properties b/SchematicSystem_Core/src/SchematicSystem.properties index cd6b666..5ffaa02 100644 --- a/SchematicSystem_Core/src/SchematicSystem.properties +++ b/SchematicSystem_Core/src/SchematicSystem.properties @@ -19,7 +19,7 @@ UTIL_LIST_BACK_HOVER=§eBack {0} UTIL_LIST_DIR=§7§lDIR UTIL_LIST_TYPE=§8§l{0} UTIL_LIST_BASE=§e -UTIL_LIST_FROM=§8Owner §7{0} +UTIL_LIST_FROM=§8from §7{0} UTIL_LIST_OPEN_DIR=§eShow directory UTIL_LIST_OPEN_SCHEM=§eManage schematics UTIL_LIST_REMOVE=[Remove] diff --git a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java index 631e7ee..4bfbe9c 100644 --- a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java +++ b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java @@ -125,7 +125,7 @@ public class SchematicCommandUtils { } else { SchematicType type = node.getSchemtype(); if (type != SchematicType.Normal) { - nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_TYPE", player, type.name())).append(" "); + nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_TYPE", player, type.getKuerzel())).append(" "); } } nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_BASE", player));