diff options
author | Dennis Friis <peavey@placid.dk> | 2008-08-04 07:17:06 +0000 |
---|---|---|
committer | Dennis Friis <peavey@placid.dk> | 2008-08-04 07:17:06 +0000 |
commit | d828b8c752fc285b26a4521c0718df5cfdc06f9d (patch) | |
tree | 9b811f8214d315c43bbd54871bdd0bc7802c4b9c | |
parent | ab74313ac96b5259f17555085f1fdb9780cd387c (diff) | |
download | mana-d828b8c752fc285b26a4521c0718df5cfdc06f9d.tar.gz mana-d828b8c752fc285b26a4521c0718df5cfdc06f9d.tar.bz2 mana-d828b8c752fc285b26a4521c0718df5cfdc06f9d.tar.xz mana-d828b8c752fc285b26a4521c0718df5cfdc06f9d.zip |
Fix typo in updatehost reported by Jaxad.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2008-08-04 Dennis Friis <peavey@placid.dk> + + * src/main.cpp: Fix typo in updatehost reported by Jaxad. + 2008-07-27 Bjørn Lindeijer <bjorn@lindeijer.nl> * src/game.cpp: Target the nearest monster on joystick button 3. diff --git a/src/main.cpp b/src/main.cpp index bc3d5449..25dbe127 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -159,7 +159,7 @@ void setUpdatesDir() // If updatesHost is currently empty, fill it from config file if (updateHost.empty()) { updateHost = - config.getValue("updatehost", "http://updates.thanaworld.org"); + config.getValue("updatehost", "http://updates.themanaworld.org"); } // Remove any trailing slash at the end of the update host |