From fc96362050d3d23104beffdadff7f662c924e1a0 Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Mon, 31 Mar 2014 20:39:22 -0700 Subject: [PATCH] autodetection url --- Scripts/Misc/ServerList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Misc/ServerList.cs b/Scripts/Misc/ServerList.cs index f8de32be8..4be603766 100644 --- a/Scripts/Misc/ServerList.cs +++ b/Scripts/Misc/ServerList.cs @@ -170,7 +170,7 @@ namespace Server.Misc private static IPAddress FindPublicAddress() { try { - WebRequest req = HttpWebRequest.Create( "https://zenvera.com/ip.php" ); + WebRequest req = HttpWebRequest.Create( "https://uo.cx/ip.php" ); req.Timeout = 15000; WebResponse res = req.GetResponse();