1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

small tweak to restart and runas command

This commit is contained in:
RaidMax
2023-04-04 21:53:51 -05:00
parent 8aed1ae8d7
commit 25cec34b85
2 changed files with 6 additions and 8 deletions

View File

@ -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"]);
}
}