addon/info: wesnoth_addon_manager wants the dependencies list in _info.cfg

This commit is contained in:
Ignacio R. Morelle 2014-02-20 23:31:06 -03:00
parent dc15ae8d31
commit acd1db7c31

View file

@ -116,6 +116,7 @@ void addon_info::write_minimal(config& cfg) const
cfg["uploads"] = this->uploads;
cfg["type"] = get_addon_type_string(this->type);
cfg["title"] = this->title;
cfg["dependencies"] = utils::join(this->depends);
}
std::string addon_info::display_title() const