From a9e400949d0bdcd1f7dfcda0ae662f71f8001d2b Mon Sep 17 00:00:00 2001 From: Ryan Kistner Date: Thu, 1 Jul 2021 16:34:45 -0600 Subject: [PATCH] Handle TryAnotherCM as a reconnection attempt --- DepotDownloader/Steam3Session.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index 069780da..cef62911 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -611,6 +611,13 @@ namespace DepotDownloader return; } + else if ( loggedOn.Result == EResult.TryAnotherCM ) + { + Console.Write( "Retrying Steam3 connection (TryAnotherCM)..." ); + Connect(); + + return; + } else if ( loggedOn.Result == EResult.ServiceUnavailable ) { Console.WriteLine( "Unable to login to Steam3: {0}", loggedOn.Result );