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