summaryrefslogtreecommitdiff
path: root/src/gui/windows/serverdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/windows/serverdialog.cpp')
-rw-r--r--src/gui/windows/serverdialog.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/gui/windows/serverdialog.cpp b/src/gui/windows/serverdialog.cpp
index 035a98a10..ffb9c3bb9 100644
--- a/src/gui/windows/serverdialog.cpp
+++ b/src/gui/windows/serverdialog.cpp
@@ -74,9 +74,15 @@ static std::string serverTypeToString(const ServerInfo::Type type)
case ServerInfo::EVOL:
return "";
#endif
- case ServerInfo::EATHENA:
#ifdef EATHENA_SUPPORT
+ case ServerInfo::EATHENA:
return "eAthena";
+ case ServerInfo::EVOL2:
+ return "Evol2";
+#else
+ case ServerInfo::EATHENA:
+ case ServerInfo::EVOL2:
+ return "";
#endif
default:
case ServerInfo::UNKNOWN:
@@ -90,6 +96,7 @@ static uint16_t defaultPortForServerType(const ServerInfo::Type type)
{
default:
case ServerInfo::EATHENA:
+ case ServerInfo::EVOL2:
#ifdef EATHENA_SUPPORT
return 6900;
#endif