diff options
author | Lloyd Bryant <lloyd_bryant@netzero.net> | 2008-09-12 15:49:30 +0000 |
---|---|---|
committer | Lloyd Bryant <lloyd_bryant@netzero.net> | 2008-09-12 15:49:30 +0000 |
commit | a9595f435664df56948ae70e954cf72143ddcfa1 (patch) | |
tree | c4dafd0992038f707e23b9bf9ba0935af10ac552 | |
parent | 2ac3733699150e6a6271e3b6447515ae31aa3bc6 (diff) | |
download | mana-client-a9595f435664df56948ae70e954cf72143ddcfa1.tar.gz mana-client-a9595f435664df56948ae70e954cf72143ddcfa1.tar.bz2 mana-client-a9595f435664df56948ae70e954cf72143ddcfa1.tar.xz mana-client-a9595f435664df56948ae70e954cf72143ddcfa1.zip |
Changed default port for Aethyra server to 21001
-rw-r--r-- | src/gui/login.cpp | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/login.cpp b/src/gui/login.cpp index 1420575d..6a4cfeb7 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -52,7 +52,7 @@ LoginDialog::LoginDialog(LoginData *loginData): gcn::Label *portLabel = new gcn::Label("Port:"); mServerList = new DropDownList("MostRecent00", "209.168.213.109", - "6901", + "21001", MAX_SERVER_LIST_SIZE); mServerListBox = new gcn::ListBox(mServerList); mServerScrollArea = new ScrollArea(); diff --git a/src/main.cpp b/src/main.cpp index f1bd89f4..8df54635 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -280,7 +280,7 @@ void init_engine(const Options &options) // Fill configuration with defaults logger->log("Initializing configuration..."); config.setValue("host", "209.168.213.109"); - config.setValue("port", 6901); + config.setValue("port", 21001); config.setValue("hwaccel", 0); #if (defined __APPLE__ || defined WIN32) && defined USE_OPENGL config.setValue("opengl", 1); |