diff --git a/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs b/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs index d9d6b3cd71..33ae144fc5 100644 --- a/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs +++ b/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs @@ -79,6 +79,9 @@ namespace OpenRA.Mods.Common.Server public void Tick(S server) { + if (!server.IsMultiplayer) + return; + // Force an update if the last one was too long ago so the advertisement doesn't time out if (Game.RunTime - lastChanged > MasterPingInterval) lastChanged = Game.RunTime;