mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Fixes #774
This commit is contained in:
parent
dcd1a50a0c
commit
d9c0ec27b0
@ -150,7 +150,7 @@ public class MainCommand extends Command {
|
|||||||
String[] tmp = new String[args.length + 1];
|
String[] tmp = new String[args.length + 1];
|
||||||
tmp[0] = split2[0];
|
tmp[0] = split2[0];
|
||||||
tmp[args.length] = split2[1];
|
tmp[args.length] = split2[1];
|
||||||
if (args.length > 2) {
|
if (args.length >= 2) {
|
||||||
System.arraycopy(args, 1, tmp, 1, args.length - 1);
|
System.arraycopy(args, 1, tmp, 1, args.length - 1);
|
||||||
}
|
}
|
||||||
args = tmp;
|
args = tmp;
|
||||||
|
Loading…
Reference in New Issue
Block a user