Merge pull request #132 from Wilee999/pull3

Fix command error in /wildcard.
This commit is contained in:
Steven Lawson 2014-01-31 11:06:47 -08:00
commit 0d32ca5451

View File

@ -13,6 +13,11 @@ public class Command_wildcard extends TFM_Command
@Override @Override
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
{ {
if (args.length == 0)
{
return false;
}
if (args[0].equals("wildcard")) if (args[0].equals("wildcard"))
{ {
playerMsg("What the hell are you trying to do, you stupid idiot...", ChatColor.RED); playerMsg("What the hell are you trying to do, you stupid idiot...", ChatColor.RED);