diff --git a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java index b50034f..8e3202b 100644 --- a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java +++ b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java @@ -317,6 +317,9 @@ public class SchematicCommand extends SWCommand { nodes.forEach(node -> { String br = node.generateBreadcrumbs(user); String displayName = br; + if (!nameList.isEmpty()) { + displayName = "§8" + br; + } for (String s : nameList) { displayName = displayName.replace(s, "§e§l" + s + "§8"); }