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>
|
/// <param name="args">参数</param>
|
||||||
private void SetCommand(string command, string args)
|
private void SetCommand(string command, string args)
|
||||||
{
|
{
|
||||||
SetCommand(Settings.Default.IsIncludeUID
|
if (!string.IsNullOrEmpty(args))
|
||||||
? $"{command} {args.Trim()} @{Settings.Default.Uid}"
|
command = command + ' ' + args;
|
||||||
: $"{command} {args.Trim()}");
|
SetCommand(command.Trim() + ' ' + Settings.Default.Uid);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user