diff options
author | Andrei Karas <akaras@inbox.ru> | 2009-12-20 04:32:22 +0200 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-12-27 10:40:04 -0700 |
commit | 84adedb3f7c351fc9c4f50828c73640530b706d9 (patch) | |
tree | 6ec05d22882848e3a8933d105638bdf094be91e6 /src/net | |
parent | 5f5f174e9143dd76ea1667077d72b8433ee6d952 (diff) | |
download | mana-84adedb3f7c351fc9c4f50828c73640530b706d9.tar.gz mana-84adedb3f7c351fc9c4f50828c73640530b706d9.tar.bz2 mana-84adedb3f7c351fc9c4f50828c73640530b706d9.tar.xz mana-84adedb3f7c351fc9c4f50828c73640530b706d9.zip |
Fix double servers list in ServerDialog
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/serverinfo.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/serverinfo.h b/src/net/serverinfo.h index 82d11fec..25b4e9a8 100644 --- a/src/net/serverinfo.h +++ b/src/net/serverinfo.h @@ -25,6 +25,8 @@ #include <string> #include <vector> +#include "utils/stringutils.h" + class ServerInfo { public: @@ -72,6 +74,15 @@ public: return (type != other.type || hostname != other.hostname || port != other.port); } + + Type static getCurrentType() + { +#ifdef MANASERV_SUPPORT + return MANASERV; +#else + return EATHENA; +#endif + } }; typedef std::vector<ServerInfo> ServerInfos; |