fix burn matching all players

This commit is contained in:
Iaccidentally 2012-09-01 16:40:49 -04:00
parent b1cfc8a8ed
commit 0fb5fc6bcc

View File

@ -20,6 +20,12 @@ public class Commandburn extends EssentialsCommand
{ {
throw new NotEnoughArgumentsException(); throw new NotEnoughArgumentsException();
} }
//TODO: TL this
if (args[0].trim().length() < 2)
{
throw new NotEnoughArgumentsException("You need to specify a player to kill.");
}
for (Player p : server.matchPlayer(args[0])) for (Player p : server.matchPlayer(args[0]))
{ {