Dieser Commit ist enthalten in:
Ursprung
52a154a6c4
Commit
2cad972c5c
@ -17,8 +17,8 @@ UTIL_LIST_BACK=§e../
|
||||
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_BASE=§l §e
|
||||
UTIL_LIST_FROM=§l §8Owner §7{0}
|
||||
UTIL_LIST_OPEN_DIR=§eShow directory
|
||||
UTIL_LIST_OPEN_SCHEM=§eManage schematics
|
||||
UTIL_LIST_REMOVE=[Remove]
|
||||
|
@ -12,7 +12,7 @@ UTIL_NAME_INVALID_CHAR=§cDer angegebene Schematicname enthält verbotene Zeiche
|
||||
UTIL_NAME_FORBIDDEN=§cDer Pfad darf nicht \"§l{0}§c\" enthalten
|
||||
UTIL_LIST_PATH=§7Aktueller Pfad: §e{0}
|
||||
UTIL_LIST_BACK_HOVER=§eZurück gehen {0}
|
||||
UTIL_LIST_FROM= §8von §7{0}
|
||||
UTIL_LIST_FROM=§l §8von §7{0}
|
||||
UTIL_LIST_OPEN_DIR=§eOrdner anzeigen
|
||||
UTIL_LIST_OPEN_SCHEM=§eSchematic verwalten
|
||||
UTIL_LIST_REMOVE=[Entfernen]
|
||||
|
@ -104,14 +104,14 @@ public class SchematicCommandUtils {
|
||||
StringBuilder nodeString = new StringBuilder();
|
||||
|
||||
if (node.isDir()) {
|
||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player)).append(" ");
|
||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player));
|
||||
} 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.name()));
|
||||
}
|
||||
}
|
||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_BASE", player)).append(" ");
|
||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_BASE", player));
|
||||
|
||||
nodeString.append(behavior.getRenderHook().apply(node.getName()));
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren