diff options
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/net.cpp | 1 | ||||
-rw-r--r-- | src/net/serverinfo.h | 5 |
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 |