CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: David White <[EMAIL PROTECTED]> 05/07/03 20:52:01
Modified files:
src : help.cpp
Log message:
removed 'terrains' help generator, in preperation to do terrain manually
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/help.cpp.diff?tr1=1.108&tr2=1.109&r1=text&r2=text
Patches:
Index: wesnoth/src/help.cpp
diff -u wesnoth/src/help.cpp:1.108 wesnoth/src/help.cpp:1.109
--- wesnoth/src/help.cpp:1.108 Sat Jul 2 21:37:18 2005
+++ wesnoth/src/help.cpp Sun Jul 3 20:52:01 2005
@@ -876,10 +876,11 @@
}
else if (generator == "weapon_specials") {
res = generate_weapon_special_topics();
- }
- else if (generator == "terrains") {
- res = generate_terrains_topics();
- }
+ }
+// terrain topics removed for now, since they aren't release-quality
+// else if (generator == "terrains") {
+// res = generate_terrains_topics();
+// }
std::sort(res.begin(), res.end(), title_less());
return res;
}