Dieser Commit ist enthalten in:
Ursprung
d63431127d
Commit
52a154a6c4
@ -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