Dieser Commit ist enthalten in:
Ursprung
2cad972c5c
Commit
93ec17f929
@ -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=§l §e
|
||||
UTIL_LIST_FROM=§l §8Owner §7{0}
|
||||
UTIL_LIST_BASE=§e
|
||||
UTIL_LIST_FROM=§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=§l §8von §7{0}
|
||||
UTIL_LIST_FROM=§8von §7{0}
|
||||
UTIL_LIST_OPEN_DIR=§eOrdner anzeigen
|
||||
UTIL_LIST_OPEN_SCHEM=§eSchematic verwalten
|
||||
UTIL_LIST_REMOVE=[Entfernen]
|
||||
|
@ -104,11 +104,11 @@ public class SchematicCommandUtils {
|
||||
StringBuilder nodeString = new StringBuilder();
|
||||
|
||||
if (node.isDir()) {
|
||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player));
|
||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player)).append(" ");
|
||||
} else {
|
||||
SchematicType type = node.getSchemtype();
|
||||
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));
|
||||
@ -120,7 +120,7 @@ public class SchematicCommandUtils {
|
||||
}
|
||||
|
||||
if (node.getOwner() != user.getId()) {
|
||||
nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_FROM", player, SteamwarUser.get(node.getOwner()).getUserName()));
|
||||
nodeString.append(" ").append(SchematicSystem.MESSAGE.parse("UTIL_LIST_FROM", player, SteamwarUser.get(node.getOwner()).getUserName()));
|
||||
}
|
||||
TextComponent schematics = new TextComponent(nodeString.toString());
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren