Changed the default usage message to reflect people fucking up

This commit is contained in:
Garbage Mule
2011-10-18 14:46:48 +02:00
parent 6d53b7c193
commit ad4d502618
3 changed files with 18 additions and 11 deletions
+9 -2
View File
@@ -102,10 +102,17 @@ public class MACommands implements CommandExecutor
boolean console = (sender instanceof ConsoleCommandSender);
// Cast the sender to Player if possible.
Player p = (player) ? (Player)sender : null;
Player p = (player) ? (Player) sender : null;
if (args.length == 0)
return false;
{
List<Arena> arenas = am.getEnabledArenas();
if (arenas == null || arenas.isEmpty())
MAUtils.tellPlayer(p, "There are no enabled arenas to join!");
else
MAUtils.tellPlayer(p, "Use /ma join to join an arena.");
return true;
}
// Grab the command base and any arguments.
String base = args[0].toLowerCase();