fix not adding last arg
This commit is contained in:
parent
f451e172e2
commit
f95c7f25f4
|
@ -126,6 +126,9 @@ namespace StardewModdingAPI.Framework
|
|||
else
|
||||
currentArg.Add(c);
|
||||
}
|
||||
|
||||
args.Add(string.Concat(currentArg));
|
||||
|
||||
return args.Where(item => !string.IsNullOrWhiteSpace(item)).ToArray();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue