1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-22 14:23:09 +02:00

fix name length check in /kill

This commit is contained in:
Iaccidentally
2012-08-10 07:17:05 -04:00
parent b81e834b4b
commit 0a72669ac7

View File

@@ -23,7 +23,7 @@ public class Commandkill extends EssentialsCommand
}
//TODO: TL this
if (args[0].trim().length() < 3)
if (args[0].trim().length() < 2)
{
throw new NotEnoughArgumentsException("You need to specify a player to kill.");
}