mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Fix mapgen settings in minetest.conf being ignored (#9737)
broken since e8a8185d24897ccf964327017effae81aa1c9d40
This commit is contained in:
parent
e1fc72c6f3
commit
eca6ee911a
@ -32,7 +32,6 @@ MapSettingsManager::MapSettingsManager(Settings *user_settings,
|
|||||||
m_user_settings(user_settings)
|
m_user_settings(user_settings)
|
||||||
{
|
{
|
||||||
assert(m_user_settings != NULL);
|
assert(m_user_settings != NULL);
|
||||||
Mapgen::setDefaultSettings(m_map_settings);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -180,6 +179,16 @@ MapgenParams *MapSettingsManager::makeMapgenParams()
|
|||||||
|
|
||||||
params->mgtype = mgtype;
|
params->mgtype = mgtype;
|
||||||
|
|
||||||
|
// Load the mapgen param defaults
|
||||||
|
/* FIXME: Why is it done like this? MapgenParams should just
|
||||||
|
* set the defaults in its constructor instead. */
|
||||||
|
{
|
||||||
|
Settings default_settings;
|
||||||
|
Mapgen::setDefaultSettings(&default_settings);
|
||||||
|
params->MapgenParams::readParams(&default_settings);
|
||||||
|
params->readParams(&default_settings);
|
||||||
|
}
|
||||||
|
|
||||||
// Load the rest of the mapgen params from our active settings
|
// Load the rest of the mapgen params from our active settings
|
||||||
params->MapgenParams::readParams(m_user_settings);
|
params->MapgenParams::readParams(m_user_settings);
|
||||||
params->MapgenParams::readParams(m_map_settings);
|
params->MapgenParams::readParams(m_map_settings);
|
||||||
|
Loading…
Reference in New Issue
Block a user