From 78f0c56af58835a5e064e0c3ab0c0bffb70845e3 Mon Sep 17 00:00:00 2001 From: Vital7 Date: Wed, 31 Oct 2018 23:06:09 +0300 Subject: [PATCH] Fix !restart command (#932) * Update Commands.cs * Replace with existing action --- ArchiSteamFarm/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Commands.cs b/ArchiSteamFarm/Commands.cs index c885e0ed8..90ea27f32 100644 --- a/ArchiSteamFarm/Commands.cs +++ b/ArchiSteamFarm/Commands.cs @@ -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)); }