mirror of
https://github.com/garbagemule/MobArena.git
synced 2025-01-23 16:51:21 +01:00
Changed the default usage message to reflect people fucking up
This commit is contained in:
parent
6d53b7c193
commit
ad4d502618
BIN
MobArena.jar
BIN
MobArena.jar
Binary file not shown.
@ -1,22 +1,22 @@
|
||||
name: MobArena
|
||||
main: com.garbagemule.MobArena.MobArena
|
||||
version: 0.94.3.20
|
||||
version: 0.94.3.21
|
||||
softdepend: [Spout,Permissions,MultiVerse,XcraftGate,Towny,Heroes,MagicSpells]
|
||||
commands:
|
||||
ma:
|
||||
description: Base command for MobArena
|
||||
usage: |
|
||||
/ma join - Join the arena.
|
||||
/ma leave - Leave the arena.
|
||||
/ma notready - List of players who aren't ready.
|
||||
/ma spectate - Warp to the spectator area.
|
||||
YOU HAVE AN ERROR!
|
||||
Find the error in your server log, copy it into
|
||||
http://pastebin.com, and then paste the link
|
||||
in the IRC or on the forums.
|
||||
mobarena:
|
||||
description: Base command for MobArena
|
||||
usage: |
|
||||
/mobarena join - Join the arena.
|
||||
/mobarena leave - Leave the arena.
|
||||
/mobarena notready - List of players who aren't ready.
|
||||
/mobarena spectate - Warp to the spectator area.
|
||||
YOU HAVE AN ERROR!
|
||||
Find the error in your server log, copy it into
|
||||
http://pastebin.com, and then paste the link
|
||||
in the IRC or on the forums.
|
||||
permissions:
|
||||
mobarena.use:
|
||||
description: Gives access to usage commands
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user