Update error messages.

This commit is contained in:
Paul Chote
2017-05-27 11:33:21 +01:00
committed by abcdefg30
parent 7f3f36885a
commit a43ec158fa

View File

@@ -28,8 +28,8 @@ namespace OpenRA.Mods.Common.Server
static readonly Beacon LanGameBeacon = new Beacon("OpenRALANGame", (ushort)new Random(DateTime.Now.Millisecond).Next(2048, 60000));
static readonly Dictionary<int, string> MasterServerErrors = new Dictionary<int, string>()
{
{ 1, "Server ports are not forwarded." },
{ 2, "Server contains blacklisted word in server name." }
{ 1, "Server port is not accessible from the internet." },
{ 2, "Server name contains a blacklisted word." }
};
public int TickTimeout { get { return MasterPingInterval * 10000; } }