diff --git a/docs/README.txt b/docs/README.txt index dbfdfc5a8..2430535ad 100644 --- a/docs/README.txt +++ b/docs/README.txt @@ -209,7 +209,7 @@ network slots and the other players have to join. The best ways to find people to play a multi-player game are: a) using the Internet Game menu b) scheduling a game on the Glest forums -c) finding other players on the #glest IRC channel on irc.freenode.net. +c) finding other players on the #megaglest IRC channel on irc.freenode.net. For LAN play, clients may click the 'Find LAN games' menu item to find servers with an open network slot on the local network (this uses UDP broadcasting). diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index 4d21bf476..84e203ba6 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -180,16 +180,16 @@ string getAboutString1(int i) { switch(i) { case 0: return "MegaGlest " + glestVersionString + " (" + "Shared Library " + sharedLibVersionString + ")"; case 1: return "Built: " + string(__DATE__) + " " + SVN_Rev; - case 2: return "Copyright 2001-2011 The MegaGlest Team"; + case 2: return "Copyright 2001-2012 The MegaGlest Team"; } return ""; } string getAboutString2(int i) { switch(i) { - case 0: return "Web: http://www.megaglest.org http://glest.org"; + case 0: return "Web: http://www.megaglest.org"; case 1: return "Bug reports: " + string(mailString); - case 2: return "Irc: irc://irc.freenode.net/glest"; + case 2: return "Irc: irc://irc.freenode.net/megaglest"; } return ""; }