mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Add mod.conf file support This new file only permits to specify a mod name for now
This commit is contained in:
parent
a0affa496d
commit
c5defe7a11
1 changed files with 5 additions and 0 deletions
|
@ -47,6 +47,11 @@ static bool parseDependsLine(std::istream &is,
|
|||
void parseModContents(ModSpec &spec)
|
||||
{
|
||||
// NOTE: this function works in mutual recursion with getModsInPath
|
||||
Settings info;
|
||||
info.readConfigFile((spec.path+DIR_DELIM+"mod.conf").c_str());
|
||||
|
||||
if (info.exists("name"))
|
||||
spec.name = info.get("name");
|
||||
|
||||
spec.depends.clear();
|
||||
spec.optdepends.clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue