Skip to content

Commit c5b67a7

Browse files
committed
Penalize Akamai CDN so it isnt preferred due to missing files
1 parent 56faab7 commit c5b67a7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

TACTSharp/CDN.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ private void LoadCDNs()
9898
{
9999
var ping = new System.Net.NetworkInformation.Ping().Send(server, 400).RoundtripTime;
100100
Console.WriteLine("Ping to " + server + ": " + ping + "ms");
101+
if(server == "blzddist1-a.akamaihd.net")
102+
ping += 5000; // TEMP: Penalize Akamai for having missing files as of November 2025
101103
return (server, ping);
102104
}
103105
catch (Exception e)

0 commit comments

Comments
 (0)