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