Dieser Commit ist enthalten in:
Ursprung
d63431127d
Commit
52a154a6c4
@ -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
|
||||||
|
@ -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()));
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren