We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0affa4 commit c5defe7Copy full SHA for c5defe7
src/mods.cpp
@@ -47,6 +47,11 @@ static bool parseDependsLine(std::istream &is,
47
void parseModContents(ModSpec &spec)
48
{
49
// NOTE: this function works in mutual recursion with getModsInPath
50
+ Settings info;
51
+ info.readConfigFile((spec.path+DIR_DELIM+"mod.conf").c_str());
52
+
53
+ if (info.exists("name"))
54
+ spec.name = info.get("name");
55
56
spec.depends.clear();
57
spec.optdepends.clear();
0 commit comments