Removed race specific topics from the unit section of the ingame help.

This commit is contained in:
Fabian Müller 2011-04-16 17:34:13 +00:00
parent 5a89f48cef
commit f0fb305ad6
3 changed files with 7 additions and 12 deletions

View file

@ -27,18 +27,17 @@
[/topic]
[topic]
id=world-ocean
title= _ " "
text= _ "The Great Ocean is the name of the open seas that surround the archipelago of <ref>dst='morogor' text='Morogor'</ref>. The drakes believe it to end at the <ref>dst='abyss' text='Abyss'</ref>, a vast and deadly waterfall."
id=world_ocean
title= _ "World Ocean"
text= _ "The World Ocean is the name of the open seas that surround the archipelago of <ref>dst='morogor' text='Morogor'</ref>. The drakes believe it to end at the <ref>dst='abyss' text='Abyss'</ref>, a vast and deadly waterfall."
[/topic]
[topic]
id=new continent
title= _ " "
text= _ "Great Continent -- The great continent to the east of <ref>dst='morogor' text='Morogor'</ref>. Its existence is unknown to the @drakes until the flight of @Galun."
id=new_continent
title= _ "New Continent"
text= _ "New Continent -- The great continent to the east of <ref>dst='morogor' text='Morogor'</ref>. Its existence is unknown to the drakes until the flight of Galun."
[/topic]
[topic]
id=abyss
title= _ "Abyss"

View file

@ -68,7 +68,6 @@ Drakes are hatched from eggs and usually live naturally between 20 to 30 years.
Drakes originated from an archipelago of volcanic islands called <ref>dst='morogor' text='Morogor'</ref> in the <ref>dst='great_ocean' text='Great Ocean'</ref>. A combination of population pressure and the subsidence of many of their home islands has caused colonies of drakes to spread to the <ref>dst='great_continent' text='Great Continent'</ref>. Drakes tend to make their homes in mountain caverns near volcanoes to protect their eggs, hatchings and forges. While drakes naturally prefer warmth, their internal fire is more than capable of sustaining them even in a relatively cold climate, a feature which has allowed them to populate even some of the mountains of the far north of the Great Continent."
num_traits=2
{DRAKE_NAMES}
{core/encyclopedia/drakes.cfg}
[/race]

View file

@ -1785,10 +1785,7 @@ std::vector<topic> generate_unit_topics(const bool sort_generated, const std::st
for (std::set<std::string, string_less>::iterator u = race_units.begin(); u != race_units.end(); ++u) {
text << (*u) << "\n";
}
text << "\n\n" << _("<header>text='Race specific topics'</header>") << "\n";
for (std::set<std::string, string_less>::iterator u = race_topics.begin(); u != race_topics.end(); ++u) {
text << (*u) << "\n";
}
topics.push_back(topic(race_name, race_id, text.str()) );
if (sort_generated)