|
|
|
@ -133,7 +133,6 @@ namespace DepotDownloader
|
|
|
|
|
ContentDownloader.Config.InstallDirectory = GetParameter<string>(args, "-dir");
|
|
|
|
|
|
|
|
|
|
ContentDownloader.Config.VerifyAll = HasParameter(args, "-verify-all") || HasParameter(args, "-verify_all") || HasParameter(args, "-validate");
|
|
|
|
|
ContentDownloader.Config.MaxServers = GetParameter(args, "-max-servers", 20);
|
|
|
|
|
|
|
|
|
|
if (HasParameter(args, "-use-lancache"))
|
|
|
|
|
{
|
|
|
|
@ -152,7 +151,6 @@ namespace DepotDownloader
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ContentDownloader.Config.MaxDownloads = GetParameter(args, "-max-downloads", 8);
|
|
|
|
|
ContentDownloader.Config.MaxServers = Math.Max(ContentDownloader.Config.MaxServers, ContentDownloader.Config.MaxDownloads);
|
|
|
|
|
ContentDownloader.Config.LoginID = HasParameter(args, "-loginid") ? GetParameter<uint>(args, "-loginid") : null;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|