Add space after commas in base terrain lists in terrain descriptions in help

This commit is contained in:
Ignacio R. Morelle 2014-12-23 05:01:40 -03:00
parent cd984ad0c2
commit 2c675a85b7

View file

@ -1331,8 +1331,13 @@ public:
const terrain_type& mvt_base = resources::game_map->get_terrain_info(underlying_terrain);
if (mvt_base.editor_name().empty()) continue;
if (!first) ss << ",";
else first = false;
if (!first) {
ss << ", ";
} else {
first = false;
}
ss << make_link(mvt_base.editor_name(), ".." + terrain_prefix + mvt_base.id());
}
}