Skip to content

Commit c5defe7

Browse files
kaezanerzhul
authored andcommittedFeb 21, 2015
Add mod.conf file support This new file only permits to specify a mod name for now
1 parent a0affa4 commit c5defe7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/mods.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ static bool parseDependsLine(std::istream &is,
4747
void parseModContents(ModSpec &spec)
4848
{
4949
// 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");
5055

5156
spec.depends.clear();
5257
spec.optdepends.clear();

0 commit comments

Comments
 (0)
Please sign in to comment.