diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 5bfc5bc5..5f3558de 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -369,7 +369,12 @@ namespace DepotDownloader } else if (depotIDs.Count == 0) { - Console.WriteLine("Depot {0} not listed for app {1}", depotId, appId); + Console.Write("Depot {0} not listed for app {1}", depotId, appId); + if (!Config.DownloadAllPlatforms) + { + Console.Write(" or not available on this platform"); + } + Console.WriteLine(); return; }