mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
Fix include UID space issue
This commit is contained in:
parent
3eb1a08697
commit
5b2442591f
@ -517,10 +517,11 @@ namespace GrasscutterTools.Forms
|
||||
private void SetCommand(string command, string args)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(args))
|
||||
command = command + ' ' + args;
|
||||
SetCommand(Settings.Default.IsIncludeUID
|
||||
? $"{command} @{Settings.Default.Uid}"
|
||||
: command);
|
||||
command = $"{command} {args}";
|
||||
command = command.Trim();
|
||||
if (Settings.Default.IsIncludeUID)
|
||||
command = $"{command} @{Settings.Default.Uid}";
|
||||
SetCommand(command);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
Reference in New Issue
Block a user