summaryrefslogtreecommitdiff
path: root/src/mods.cpp
diff options
context:
space:
mode:
authorPilzAdam <pilzadam@minetest.net>2013-05-19 19:52:29 +0200
committerPilzAdam <pilzadam@minetest.net>2013-05-19 19:52:29 +0200
commitb2253e5b42aed74365cb6d10b90fea4a30dee5fa (patch)
treeb02df46ad2a35316fb96f1630ef57101fdc51327 /src/mods.cpp
parentdcd0b63f645bccf497a030b6b1cec97178542eb1 (diff)
downloadminetest-b2253e5b42aed74365cb6d10b90fea4a30dee5fa.tar.gz
minetest-b2253e5b42aed74365cb6d10b90fea4a30dee5fa.tar.bz2
minetest-b2253e5b42aed74365cb6d10b90fea4a30dee5fa.zip
Write mods that are not in world.mt into it at world startup
Diffstat (limited to 'src/mods.cpp')
-rw-r--r--src/mods.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mods.cpp b/src/mods.cpp
index a0a37afb9..9097f5708 100644
--- a/src/mods.cpp
+++ b/src/mods.cpp
@@ -247,8 +247,11 @@ ModConfiguration::ModConfiguration(std::string worldpath)
ModSpec& mod = *it;
if(include_mod_names.count(mod.name) != 0)
addon_mods.push_back(mod);
+ else
+ worldmt_settings.setBool("load_mod_" + mod.name, false);
}
}
+ worldmt_settings.updateConfigFile(worldmt.c_str());
addMods(addon_mods);