Remove long-broken setting to ignore version mismatches.

This commit is contained in:
Paul Chote
2018-11-25 22:24:02 +00:00
committed by reaperrr
parent b7317f2202
commit 04359206ff
3 changed files with 1 additions and 5 deletions

View File

@@ -351,7 +351,7 @@ namespace OpenRA.Server
return;
}
if (ModData.Manifest.Metadata.Version != handshake.Version && !LobbyInfo.GlobalSettings.AllowVersionMismatch)
if (ModData.Manifest.Metadata.Version != handshake.Version)
{
Log.Write("server", "Rejected connection from {0}; Not running the same version.",
newConn.Socket.RemoteEndPoint);