diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-04-08 22:54:22 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-04-08 22:54:22 -0400 |
commit | 4184caa64134fae63c31d3699b55dd4c150f3f8a (patch) | |
tree | f507ba7dd8414d6c068a5d2ed7a35fb9d763cf07 /settings.lua | |
parent | 4c198fad78428ac7695626fc39cf6db63d25c7d3 (diff) |
removed all code that tries to disable default trees because the minetest dev
team is being completely obstinant about letting me properly disable them from
this mod.
Instead, made beech trees respond to enable flags in settings.lua (disabled by
default). If you want beeches, turn that flag on in settings.lua and remove
the "trees" flag from yourworld/map_meta.txt in the mg_flags line.
Diffstat (limited to 'settings.lua')
-rw-r--r-- | settings.lua | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/settings.lua b/settings.lua index 66fefeb..766d193 100644 --- a/settings.lua +++ b/settings.lua @@ -13,13 +13,7 @@ moretrees.enable_birch = true moretrees.enable_spruce = true moretrees.enable_jungle_tree = true moretrees.enable_fir = true - --- Enable replacement of default trees with moretrees beech. --- Note: The code that uses this variable is in leafdecay.lua --- because of how it interacts with settings related to that --- function. - -moretrees.enable_replace_default_trees = true +moretrees.enable_beech = false -- Set this to true to enable leaf decay of all trees except the default ones. |