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_BACK_HOVER=§eBack {0}
|
||||||
UTIL_LIST_DIR=§7§lDIR
|
UTIL_LIST_DIR=§7§lDIR
|
||||||
UTIL_LIST_TYPE=§8§l{0}
|
UTIL_LIST_TYPE=§8§l{0}
|
||||||
UTIL_LIST_BASE= §e
|
UTIL_LIST_BASE=§l §e
|
||||||
UTIL_LIST_FROM= §8Owner §7{0}
|
UTIL_LIST_FROM=§l §8Owner §7{0}
|
||||||
UTIL_LIST_OPEN_DIR=§eShow directory
|
UTIL_LIST_OPEN_DIR=§eShow directory
|
||||||
UTIL_LIST_OPEN_SCHEM=§eManage schematics
|
UTIL_LIST_OPEN_SCHEM=§eManage schematics
|
||||||
UTIL_LIST_REMOVE=[Remove]
|
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_NAME_FORBIDDEN=§cDer Pfad darf nicht \"§l{0}§c\" enthalten
|
||||||
UTIL_LIST_PATH=§7Aktueller Pfad: §e{0}
|
UTIL_LIST_PATH=§7Aktueller Pfad: §e{0}
|
||||||
UTIL_LIST_BACK_HOVER=§eZurück gehen {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_DIR=§eOrdner anzeigen
|
||||||
UTIL_LIST_OPEN_SCHEM=§eSchematic verwalten
|
UTIL_LIST_OPEN_SCHEM=§eSchematic verwalten
|
||||||
UTIL_LIST_REMOVE=[Entfernen]
|
UTIL_LIST_REMOVE=[Entfernen]
|
||||||
@ -42,7 +42,7 @@ UTIL_INFO_ACTION_MOVE=[Verschieben]
|
|||||||
UTIL_INFO_ACTION_MOVE_HOVER=§eSchematic verschieben
|
UTIL_INFO_ACTION_MOVE_HOVER=§eSchematic verschieben
|
||||||
UTIL_INFO_ACTION_RENAME=[Umbenennen]
|
UTIL_INFO_ACTION_RENAME=[Umbenennen]
|
||||||
UTIL_INFO_ACTION_RENAME_HOVER=§eSchematic umbenennen
|
UTIL_INFO_ACTION_RENAME_HOVER=§eSchematic umbenennen
|
||||||
UTIL_INFO_ACTION_DELETE=[Löschen]
|
UTIL_INFO_ACTION_DELETE=[Löschen]
|
||||||
UTIL_INFO_ACTION_DELETE_HOVER=§eSchematic löschen
|
UTIL_INFO_ACTION_DELETE_HOVER=§eSchematic löschen
|
||||||
UTIL_LOAD_NOT_HERE=§cDu kannst hier keine Schematics laden
|
UTIL_LOAD_NOT_HERE=§cDu kannst hier keine Schematics laden
|
||||||
UTIL_LOAD_NOT_HERE_ALL=§cAuf diesem Bau können keine Schematics geladen werden
|
UTIL_LOAD_NOT_HERE_ALL=§cAuf diesem Bau können keine Schematics geladen werden
|
||||||
|
@ -104,14 +104,14 @@ public class SchematicCommandUtils {
|
|||||||
StringBuilder nodeString = new StringBuilder();
|
StringBuilder nodeString = new StringBuilder();
|
||||||
|
|
||||||
if (node.isDir()) {
|
if (node.isDir()) {
|
||||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player)).append(" ");
|
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player));
|
||||||
} else {
|
} else {
|
||||||
SchematicType type = node.getSchemtype();
|
SchematicType type = node.getSchemtype();
|
||||||
if (type != SchematicType.Normal) {
|
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()));
|
nodeString.append(behavior.getRenderHook().apply(node.getName()));
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren