Fix !restart command (#932)

* Update Commands.cs

* Replace with existing action
This commit is contained in:
Vital7
2018-10-31 23:06:09 +03:00
committed by Łukasz Domeradzki
parent f10f4db7b4
commit 78f0c56af5

View File

@@ -1932,7 +1932,7 @@ namespace ArchiSteamFarm {
return null;
}
(bool success, string output) = Actions.Exit();
(bool success, string output) = Actions.Restart();
return FormatStaticResponse(success ? output : string.Format(Strings.WarningFailedWithError, output));
}