summaryrefslogtreecommitdiff
path: root/src/gui/login.cpp
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-01-21 09:35:04 -0700
committerIra Rice <irarice@gmail.com>2009-01-21 09:35:04 -0700
commit4bee113beffd52517ca0414909248ea9b00970cd (patch)
treeddb06610617c5bee4ce4ffd154889da726c3c971 /src/gui/login.cpp
parentda2b9950c5785381e5e7ed541bc33dbecdb51f9c (diff)
downloadmana-client-4bee113beffd52517ca0414909248ea9b00970cd.tar.gz
mana-client-4bee113beffd52517ca0414909248ea9b00970cd.tar.bz2
mana-client-4bee113beffd52517ca0414909248ea9b00970cd.tar.xz
mana-client-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>
Diffstat (limited to 'src/gui/login.cpp')
-rw-r--r--src/gui/login.cpp2
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);