Remove unused field from HandshakeRequest.

This field was not serialised, so compatibility
is not impacted.
This commit is contained in:
Paul Chote
2019-05-11 10:20:29 +00:00
committed by abcdefg30
parent 1e23c0a7b7
commit 9daf02a955
2 changed files with 0 additions and 2 deletions

View File

@@ -18,7 +18,6 @@ namespace OpenRA.Network
{
public string Mod;
public string Version;
public string Map;
public string AuthToken;
public static HandshakeRequest Deserialize(string data)

View File

@@ -289,7 +289,6 @@ namespace OpenRA.Server
{
Mod = ModData.Manifest.Id,
Version = ModData.Manifest.Metadata.Version,
Map = LobbyInfo.GlobalSettings.Map,
AuthToken = token
};