From f4c6d295e5fa943515d67f7059162a03c66a3274 Mon Sep 17 00:00:00 2001 From: K07H Date: Wed, 17 Sep 2014 11:29:11 +0200 Subject: [PATCH] Fix EUW (eu -> euw1) ChatName: "eu" -> "euw1" Server: "prod.eu..." -> "prod.euw1..." LoginQueue: "https://lq.eu..." -> "https://lq.euw1..." --- LegendaryClient/Logic/Region/EUW.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LegendaryClient/Logic/Region/EUW.cs b/LegendaryClient/Logic/Region/EUW.cs index 67ed50c..6f9675c 100644 --- a/LegendaryClient/Logic/Region/EUW.cs +++ b/LegendaryClient/Logic/Region/EUW.cs @@ -17,7 +17,7 @@ public override string InternalName public override string ChatName { - get { return "eu"; } + get { return "euw1"; } } public override Uri NewsAddress @@ -27,12 +27,12 @@ public override Uri NewsAddress public override string Server { - get { return "prod.eu.lol.riotgames.com"; } + get { return "prod.euw1.lol.riotgames.com"; } } public override string LoginQueue { - get { return "https://lq.eu.lol.riotgames.com/"; } + get { return "https://lq.euw1.lol.riotgames.com/"; } } public override string Locale @@ -62,4 +62,4 @@ public override string SpectatorIpAddress get { return "95.172.65.26"; } } } -} \ No newline at end of file +}