diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index 23dac825..ea4abae7 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -34,7 +34,6 @@ namespace DepotDownloader public Dictionary DepotKeys { get; private set; } public Dictionary AppInfo { get; private set; } public Dictionary PackageInfo { get; private set; } - public Dictionary AppInfoOverridesCDR { get; private set; } public SteamClient steamClient; public SteamUser steamUser; @@ -70,7 +69,6 @@ namespace DepotDownloader this.DepotKeys = new Dictionary(); this.AppInfo = new Dictionary(); this.PackageInfo = new Dictionary(); - this.AppInfoOverridesCDR = new Dictionary(); this.steamClient = new SteamClient(); @@ -151,15 +149,6 @@ namespace DepotDownloader Console.WriteLine("Got AppInfo for {0}", app.ID); AppInfo.Add(app.ID, app); - - KeyValue depots = ContentDownloader.GetSteam3AppSection(app.ID, EAppInfoSection.Depots); - if (depots != null) - { - if (depots["OverridesCDDB"].AsBoolean(false)) - { - AppInfoOverridesCDR[app.ID] = true; - } - } } foreach (var app in appInfo.UnknownApps)