diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-21 09:35:04 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-21 09:35:04 -0700 |
commit | 4bee113beffd52517ca0414909248ea9b00970cd (patch) | |
tree | ddb06610617c5bee4ce4ffd154889da726c3c971 | |
parent | da2b9950c5785381e5e7ed541bc33dbecdb51f9c (diff) | |
download | mana-4bee113beffd52517ca0414909248ea9b00970cd.tar.gz mana-4bee113beffd52517ca0414909248ea9b00970cd.tar.bz2 mana-4bee113beffd52517ca0414909248ea9b00970cd.tar.xz mana-4bee113beffd52517ca0414909248ea9b00970cd.zip |
Added the straight IP address for the server to the default servers, so
that people can see that option if the DNS server isn't resolving the
web address. While this shouldn't ever be an issue, it could occur in
some parts of the world at various times and for various reasons.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r-- | src/gui/login.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/login.cpp b/src/gui/login.cpp index eddae739..7ac76c63 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -56,9 +56,11 @@ LoginDialog::LoginDialog(LoginData *loginData): std::vector<std::string> dfltServer; dfltServer.push_back("www.aethyra.org"); dfltServer.push_back("www.aethyra.org"); + dfltServer.push_back("209.168.213.109"); std::vector<std::string> dfltPort; dfltPort.push_back("21001"); dfltPort.push_back("22001"); + dfltPort.push_back("21001"); mServerList = new DropDownList("MostRecent00", dfltServer, dfltPort, MAX_SERVER_LIST_SIZE); mServerListBox = new gcn::ListBox(mServerList); |