mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
Fix include uid symbol issue
This commit is contained in:
parent
dce7e54675
commit
1993d3d295
@ -380,9 +380,9 @@ namespace GrasscutterTools.Forms
|
||||
/// <param name="args">参数</param>
|
||||
private void SetCommand(string command, string args)
|
||||
{
|
||||
SetCommand(Settings.Default.IsIncludeUID
|
||||
? $"{command} {args.Trim()} @{Settings.Default.Uid}"
|
||||
: $"{command} {args.Trim()}");
|
||||
if (!string.IsNullOrEmpty(args))
|
||||
command = command + ' ' + args;
|
||||
SetCommand(command.Trim() + ' ' + Settings.Default.Uid);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
Reference in New Issue
Block a user