small tweak to restart and runas command
This commit is contained in:
parent
5f5c0f1cfb
commit
fb82cbe6f2
@ -54,11 +54,10 @@ namespace SharedLibraryCore.Commands
|
||||
RequiresTarget = false;
|
||||
}
|
||||
|
||||
public override Task ExecuteAsync(GameEvent E)
|
||||
public override async Task ExecuteAsync(GameEvent gameEvent)
|
||||
{
|
||||
E.Owner.Manager.Restart();
|
||||
E.Origin.Tell(_translationLookup["COMMANDS_RESTART_SUCCESS"]);
|
||||
return Task.CompletedTask;
|
||||
await gameEvent.Owner.Manager.Restart();
|
||||
gameEvent.Origin.Tell(_translationLookup["COMMANDS_RESTART_SUCCESS"]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -63,9 +63,8 @@ namespace SharedLibraryCore.Commands
|
||||
.SelectMany(ev => ev.Value.Output)
|
||||
.ToList();
|
||||
|
||||
foreach (var output in responses)
|
||||
await gameEvent.Origin.Tell(_translationLookup["COMMANDS_RUN_AS_SUCCESS"].FormatExt(output))
|
||||
.WaitAsync();
|
||||
await gameEvent.Origin.TellAsync(responses.Select(output =>
|
||||
_translationLookup["COMMANDS_RUN_AS_SUCCESS"].FormatExt(output)));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user