mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-08-02 16:59:14 +08:00
Fix include uid bug
This commit is contained in:
parent
749f324f7d
commit
ab92469f11
@ -382,7 +382,9 @@ namespace GrasscutterTools.Forms
|
|||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(args))
|
if (!string.IsNullOrEmpty(args))
|
||||||
command = command + ' ' + args;
|
command = command + ' ' + args;
|
||||||
SetCommand(command.Trim() + ' ' + Settings.Default.Uid);
|
SetCommand(Settings.Default.IsIncludeUID
|
||||||
|
? $"{command} @{Settings.Default.Uid}"
|
||||||
|
: command);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user