diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index 08ca9562..a5e4fb5a 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -515,11 +515,17 @@ namespace DepotDownloader if (result.NewGuardData != null) { AccountSettingsStore.Instance.GuardData[result.AccountName] = result.NewGuardData; + + if (ContentDownloader.Config.UseQrCode) + { + Console.WriteLine($"Success! Next time you can login with -username {result.AccountName} -remember-password instead of -qr."); + } } else { AccountSettingsStore.Instance.GuardData.Remove(result.AccountName); } + AccountSettingsStore.Instance.LoginTokens[result.AccountName] = result.RefreshToken; AccountSettingsStore.Save(); }