From ed1c03e0ac96ea5d2db98e19fb5685378dad4a43 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Mon, 8 Feb 2021 17:49:20 +0100 Subject: [PATCH] Fix Message --- .../src/de/steamwar/bausystem/commands/CommandGUI.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandGUI.java b/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandGUI.java index c9231bc..a13bc31 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandGUI.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandGUI.java @@ -327,12 +327,12 @@ public class CommandGUI implements CommandExecutor, Listener { }); } if(TraceShowManager.hasActiveShow(player)) { - inv.setItem(2, Material.TNT, "§7Showstatus", Arrays.asList("§7Aktuell: §eGezeigt", "§8/§7trace show§e/§7hide"), false, clickType -> { + inv.setItem(2, Material.TNT, "§7Showstatus", Arrays.asList("§7Aktuell: §eGezeigt", "§8/§7trace §8[§eshow§8/§ehide§8]"), false, clickType -> { player.performCommand("trace hide"); traceGUI(player); }); } else { - inv.setItem(2, Material.GLASS, "§7Showstatus", Arrays.asList("§7Aktuell: §eVersteckt", "§8/§§7trace show§e/§7hide"), false, clickType -> { + inv.setItem(2, Material.GLASS, "§7Showstatus", Arrays.asList("§7Aktuell: §eVersteckt", "§8/§7trace §8[§eshow§8/§ehide§8]"), false, clickType -> { player.performCommand("trace show"); traceGUI(player); });