mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-02 17:09:58 +01:00
fix name length check in /kill
This commit is contained in:
parent
3e203d193c
commit
bdf67db6ed
@ -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.");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user