summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-15 21:46:45 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-15 21:46:45 +0300
commit365b09d7029abf778d4210cb47f393dee5d749a5 (patch)
treeb71ea1994aa2db4ccc1b7f4df612676d441aacf0 /src/net
parent77afc97b4d6e4caace275d8bc21a94525ad070e2 (diff)
downloadplus-365b09d7029abf778d4210cb47f393dee5d749a5.tar.gz
plus-365b09d7029abf778d4210cb47f393dee5d749a5.tar.bz2
plus-365b09d7029abf778d4210cb47f393dee5d749a5.tar.xz
plus-365b09d7029abf778d4210cb47f393dee5d749a5.zip
Remove old evol server type.
Diffstat (limited to 'src/net')
-rw-r--r--src/net/net.cpp1
-rw-r--r--src/net/serverinfo.h5
2 files changed, 1 insertions, 5 deletions
diff --git a/src/net/net.cpp b/src/net/net.cpp
index f58b624e9..49ce1321f 100644
--- a/src/net/net.cpp
+++ b/src/net/net.cpp
@@ -141,7 +141,6 @@ void connectToServer(const ServerInfo &server)
#endif
break;
case ServerType::TMWATHENA:
- case ServerType::EVOL:
case ServerType::UNKNOWN:
default:
#ifdef TMWA_SUPPORT
diff --git a/src/net/serverinfo.h b/src/net/serverinfo.h
index efbdf015a..6e7eb718b 100644
--- a/src/net/serverinfo.h
+++ b/src/net/serverinfo.h
@@ -151,11 +151,8 @@ class ServerInfo final
#ifdef TMWA_SUPPORT
if (compareStrI(serverType, "tmwathena") == 0)
return ServerType::TMWATHENA;
- if (compareStrI(serverType, "evol") == 0)
- return ServerType::EVOL;
#else
- if (compareStrI(serverType, "tmwathena") == 0
- || compareStrI(serverType, "evol") == 0)
+ if (compareStrI(serverType, "tmwathena") == 0)
return ServerType::EATHENA;
#endif
#ifdef EATHENA_SUPPORT