From 1ab9a871c3120d6986725191ec98bae6f3d3ca87 Mon Sep 17 00:00:00 2001 From: Lixfel Date: Sun, 19 Jan 2020 06:42:04 +0100 Subject: [PATCH] Hotfix missing spacing --- src/de/steamwar/bungeecore/commands/FightCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/de/steamwar/bungeecore/commands/FightCommand.java b/src/de/steamwar/bungeecore/commands/FightCommand.java index d74c2a4a..4dc6f1c3 100644 --- a/src/de/steamwar/bungeecore/commands/FightCommand.java +++ b/src/de/steamwar/bungeecore/commands/FightCommand.java @@ -53,7 +53,7 @@ public class FightCommand extends BasicCommand { String command = precommand + mode.getChatName(); current.setBold(true); current.setColor(ChatColor.GRAY); - current.setText(mode.getChatName()); + current.setText(mode.getChatName() + " "); current.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ComponentBuilder("§e" + command).create())); current.setClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, command)); if(current != start) @@ -71,7 +71,7 @@ public class FightCommand extends BasicCommand { String command = precommand + mode.getChatName() + " " + map; current.setBold(true); current.setColor(ChatColor.GRAY); - current.setText(mode.getChatName()); + current.setText(mode.getChatName() + " "); current.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ComponentBuilder("§e" + command).create())); current.setClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, command)); if(current != start)