diff --git a/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs b/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs index fa0575fb80..e37a5ade19 100644 --- a/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs +++ b/OpenRA.Mods.Common/ServerTraits/MasterServerPinger.cs @@ -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 MasterServerErrors = new Dictionary() { - { 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; } }