diff options
Diffstat (limited to 'src/net/serverinfo.h')
-rw-r--r-- | src/net/serverinfo.h | 5 |
1 files changed, 1 insertions, 4 deletions
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 |