mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-07-28 16:32:09 +00:00
fix burn matching all players
This commit is contained in:
parent
b1cfc8a8ed
commit
0fb5fc6bcc
1 changed files with 6 additions and 0 deletions
|
@ -21,6 +21,12 @@ public class Commandburn extends EssentialsCommand
|
|||
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]))
|
||||
{
|
||||
p.setFireTicks(Integer.parseInt(args[1]) * 20);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue