From 179c7feccd9222386ef8d51598bd38503a883cf0 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Thu, 13 Jul 2017 14:06:27 +1000 Subject: [PATCH] Don't bother sending a expect 100 continue for heartbeats This should help with servers that have relatively high latency --- MCGalaxy/Server/Server.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MCGalaxy/Server/Server.cs b/MCGalaxy/Server/Server.cs index 0901b6ac4..8f75de1c5 100644 --- a/MCGalaxy/Server/Server.cs +++ b/MCGalaxy/Server/Server.cs @@ -85,6 +85,7 @@ namespace MCGalaxy { StartTimeLocal = StartTime.ToLocalTime(); shuttingDown = false; Logger.Log(LogType.SystemActivity, "Starting Server"); + ServicePointManager.Expect100Continue = false; try { if (File.Exists("Restarter.exe")) File.Delete("Restarter.exe");