diff options
author | Ira Rice <irarice@gmail.com> | 2008-09-29 23:03:41 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-09-29 23:03:41 +0000 |
commit | 7aa0b5cadf9f37c7d9395aa44e0c461e2b539763 (patch) | |
tree | ea85dcc9415c031d3f2a28e74b8f4ec38f2b1747 /src/main.cpp | |
parent | 9ae618b143023609a1f085162ca935167677e1ca (diff) | |
download | mana-7aa0b5cadf9f37c7d9395aa44e0c461e2b539763.tar.gz mana-7aa0b5cadf9f37c7d9395aa44e0c461e2b539763.tar.bz2 mana-7aa0b5cadf9f37c7d9395aa44e0c461e2b539763.tar.xz mana-7aa0b5cadf9f37c7d9395aa44e0c461e2b539763.zip |
Modified the client so that it displays both servers as server choices,
as well as changing the default server to point to www.aethyra.org
instead of Slinker's IP address now.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index fb4e8f76..4427b4d4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -166,7 +166,7 @@ void setUpdatesDir() // If updatesHost is currently empty, fill it from config file if (updateHost.empty()) { updateHost = - config.getValue("updatehost", "http://209.168.213.109/updates"); + config.getValue("updatehost", "http://www.aethyra.org/updates"); } // Parse out any "http://" or "ftp://", and set the updates directory @@ -279,7 +279,7 @@ void init_engine(const Options &options) // Fill configuration with defaults logger->log("Initializing configuration..."); - config.setValue("host", "209.168.213.109"); + config.setValue("host", "www.aethyra.org"); config.setValue("port", 21001); config.setValue("hwaccel", 0); #if (defined __APPLE__ || defined WIN32) && defined USE_OPENGL @@ -294,7 +294,7 @@ void init_engine(const Options &options) config.setValue("sfxVolume", 100); config.setValue("musicVolume", 60); config.setValue("fpslimit", 60); - config.setValue("updatehost", "http://209.168.213.109/updates"); + config.setValue("updatehost", "http://www.aethyra.org/updates"); config.setValue("customcursor", 1); config.setValue("ChatLogLength", 128); |