13
0

Hotfix: Message
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Chaoscaot 2022-06-01 22:19:57 +02:00
Ursprung d63431127d
Commit 52a154a6c4
2 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -54,7 +54,7 @@ UTIL_INFO_ACTION_MOVE=[Move]
UTIL_INFO_ACTION_MOVE_HOVER=§eMove schematic UTIL_INFO_ACTION_MOVE_HOVER=§eMove schematic
UTIL_INFO_ACTION_RENAME=[Rename] UTIL_INFO_ACTION_RENAME=[Rename]
UTIL_INFO_ACTION_RENAME_HOVER=§eRename schematic UTIL_INFO_ACTION_RENAME_HOVER=§eRename schematic
UTIL_INFO_ACTION_DELETE=[Delete] UTIL_INFO_ACTION_DELETE=[Delete]
UTIL_INFO_ACTION_DELETE_HOVER=§eDelete schematic UTIL_INFO_ACTION_DELETE_HOVER=§eDelete schematic
UTIL_LOAD_NOT_HERE=§cYou cannot load schematics here UTIL_LOAD_NOT_HERE=§cYou cannot load schematics here
UTIL_LOAD_NOT_HERE_ALL=§cSchematics cannot be loaded on this build UTIL_LOAD_NOT_HERE_ALL=§cSchematics cannot be loaded on this build

Datei anzeigen

@ -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)); nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player)).append(" ");
} 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())); nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_TYPE", player, type.name())).append(" ");
} }
} }
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_BASE", player)); nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_BASE", player)).append(" ");
nodeString.append(behavior.getRenderHook().apply(node.getName())); nodeString.append(behavior.getRenderHook().apply(node.getName()));