Connect to eight servers instead of six as very often first few will not be usable.

pull/8/head
Nicholas Hastings 12 years ago
parent bf92eb63e5
commit 7c9e2c2264

@ -457,8 +457,8 @@ namespace DepotDownloader
continue; continue;
} }
// Grab the six best servers // Grab up to the first eight server in the allegedly best-to-worst order from Steam
Enumerable.Range(0, Math.Min(cdnServers.Count, 6)).ToList().ForEach(s => Enumerable.Range(0, Math.Min(cdnServers.Count, 8)).ToList().ForEach(s =>
{ {
CDNClient c; CDNClient c;
if( s == 0 ) if( s == 0 )

Loading…
Cancel
Save