Fixed missing the first word of a perm flag

This commit is contained in:
Teriuihi 2022-03-02 15:19:54 +01:00
parent 15e5efddad
commit 9debf2aea4

View File

@ -57,7 +57,7 @@ public class CommandFlagPlayer extends SubCommand {
return;
}
String reason = String.join(" ", Arrays.copyOfRange(args, 3, args.length));
String reason = String.join(" ", Arrays.copyOfRange(args, 2, args.length));
new BukkitRunnable() {
@Override