UPnP source code fixes

as suggested by Chris Forbes
This commit is contained in:
Matthias Mailänder
2012-05-21 17:06:03 +02:00
committed by Chris Forbes
parent a831e72fa2
commit aa36a56b27
6 changed files with 177 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ namespace OpenRA.GameRules
public int ExternalPort = 1234;
public bool AdvertiseOnline = true;
public string MasterServer = "http://master.open-ra.org/";
public bool AllowUPnP = true;
public bool AllowCheats = false;
public string Map = null;
public string[] Ban = null;
@@ -42,6 +43,7 @@ namespace OpenRA.GameRules
ExternalPort = other.ExternalPort;
AdvertiseOnline = other.AdvertiseOnline;
MasterServer = other.MasterServer;
AllowUPnP = other.AllowUPnP;
AllowCheats = other.AllowCheats;
Map = other.Map;
Ban = other.Ban;