1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-17 00:07:41 +02:00

Restored display of enabled and disabled mods in Launcher

This commit is contained in:
Ivan Savenko
2024-11-14 18:43:41 +00:00
parent ac3aecba81
commit 37e975036c
7 changed files with 36 additions and 43 deletions

View File

@ -27,6 +27,9 @@ ModDescription::ModDescription(const TModID & fullID, const JsonNode & localConf
{
if(getID() != "core")
dependencies.emplace("core");
if (!getParentID().empty())
dependencies.emplace(getParentID());
}
ModDescription::~ModDescription() = default;