From 178b6b658d1036e0cad1290783a4b22f8f8aa001 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 20 May 2018 09:48:26 +0000 Subject: [PATCH] Remove broken DEV_VERSION warning. This (before it was broken) was hardcoding upstream policy-specific conventions into the core engine. --- OpenRA.Game/Server/Server.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/OpenRA.Game/Server/Server.cs b/OpenRA.Game/Server/Server.cs index 24b29695d8..48bdc41a5f 100644 --- a/OpenRA.Game/Server/Server.cs +++ b/OpenRA.Game/Server/Server.cs @@ -402,10 +402,6 @@ namespace OpenRA.Server SendOrderTo(newConn, "Message", TwoHumansRequiredText); else if (Map.Players.Players.Where(p => p.Value.Playable).All(p => !p.Value.AllowBots)) SendOrderTo(newConn, "Message", "Bots have been disabled on this map."); - - if (handshake.Mod == "{DEV_VERSION}") - SendMessage("{0} is running an unversioned development build, ".F(client.Name) + - "and may desynchronize the game state if they have incompatible rules."); } catch (Exception ex) {