Add short game option to GUI

This commit is contained in:
Oliver Brakmann
2014-11-16 20:24:21 +01:00
parent 280b30961f
commit 4b9b1df96b
4 changed files with 57 additions and 33 deletions

View File

@@ -57,6 +57,9 @@ namespace OpenRA.Mods.Common.Server
if (server.LobbyInfo.GlobalSettings.TechLevel != defaults.TechLevel)
server.SendOrderTo(conn, "Message", "Tech Level: {0}".F(server.LobbyInfo.GlobalSettings.TechLevel));
if (server.LobbyInfo.GlobalSettings.ShortGame != defaults.ShortGame)
server.SendOrderTo(conn, "Message", "Short Game: {0}".F(server.LobbyInfo.GlobalSettings.ShortGame));
}
}
}