diff options
author | Ira Rice <irarice@gmail.com> | 2008-11-03 19:50:46 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-11-03 19:50:46 +0000 |
commit | e7bec61d89e2fb60bd89a51e0475f16a0956945e (patch) | |
tree | 2b4ae7f8473f20bb718878e8d5fc703111911033 /src/gui/login.cpp | |
parent | 6ad0aaed79c4334c6c9c22ccc53dc463cc554bb3 (diff) | |
download | mana-e7bec61d89e2fb60bd89a51e0475f16a0956945e.tar.gz mana-e7bec61d89e2fb60bd89a51e0475f16a0956945e.tar.bz2 mana-e7bec61d89e2fb60bd89a51e0475f16a0956945e.tar.xz mana-e7bec61d89e2fb60bd89a51e0475f16a0956945e.zip |
Fixed login server order, so as to not confuse new people.
Diffstat (limited to 'src/gui/login.cpp')
-rw-r--r-- | src/gui/login.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/login.cpp b/src/gui/login.cpp index c553d56e..dd64cf1b 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -55,8 +55,8 @@ LoginDialog::LoginDialog(LoginData *loginData): dfltServer.push_back("www.aethyra.org"); dfltServer.push_back("www.aethyra.org"); std::vector<std::string> dfltPort; - dfltPort.push_back("22001"); dfltPort.push_back("21001"); + dfltPort.push_back("22001"); mServerList = new DropDownList("MostRecent00", dfltServer, dfltPort, MAX_SERVER_LIST_SIZE); mServerListBox = new gcn::ListBox(mServerList); |