From 41e910ad69a8a04f261bff6d4edf4e0100f936e3 Mon Sep 17 00:00:00 2001 From: garbagemule Date: Fri, 18 Oct 2013 21:16:42 +0200 Subject: [PATCH] More help on arena-not-found with setup command. --- src/com/garbagemule/MobArena/commands/setup/SetupCommand.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/garbagemule/MobArena/commands/setup/SetupCommand.java b/src/com/garbagemule/MobArena/commands/setup/SetupCommand.java index 5f55ace..3177209 100644 --- a/src/com/garbagemule/MobArena/commands/setup/SetupCommand.java +++ b/src/com/garbagemule/MobArena/commands/setup/SetupCommand.java @@ -61,7 +61,8 @@ public class SetupCommand implements Command, Listener { } else { arena = am.getArenaWithName(args[0]); if (arena == null) { - tell(sender, "There is no arena with the name " + args[0] + "."); + tell(sender, "There is no arena with the name " + ChatColor.RED + args[0] + ChatColor.RESET + "."); + tell(sender, "Type " + ChatColor.YELLOW + "/ma addarena " + args[0] + ChatColor.RESET + " to create it!"); return true; } }