summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-04-07 22:09:18 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-04-07 22:09:18 -0400
commit4c198fad78428ac7695626fc39cf6db63d25c7d3 (patch)
tree98ab0b563791f28011792c4d831ef1a37ba239f7 /init.lua
parentd877bd51bb0246addc01477396af31c6d67fe0f4 (diff)
Multiple changes, see below:
Fix replacement of default trees so that it works correctly. Beeches now use default tree nodes, but L-systems models. This redefines the default tree, wood, leaves, and saplings so that they use moretrees' textures "Beech" in their descriptions, but only if replacement of default trees is enabled. Added backward-compat aliases for this change. Moved tree replacement mapgen->air aliases to a more logical spot in the code. Also, changed out all leaf decay dig_node() calls for nodeupdate(), since the former calls the latter anyway, and the latter is what does the job. Increased the palm leaf decay radius to 12.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua13
1 files changed, 8 insertions, 5 deletions
diff --git a/init.lua b/init.lua
index c58b419..90e8111 100644
--- a/init.lua
+++ b/init.lua
@@ -1,4 +1,4 @@
--- More trees! 2013-02-11
+-- More trees! 2013-04-07
--
-- This mod adds more types of trees to the game
--
@@ -18,18 +18,21 @@
moretrees = {}
--- These first two dofile() calls must precede any others, and must remain in
--- this order, otherwise variables and node names will get skipped.
-
dofile(minetest.get_modpath("moretrees").."/settings.lua")
dofile(minetest.get_modpath("moretrees").."/node_defs.lua")
-
dofile(minetest.get_modpath("moretrees").."/tree_models.lua")
dofile(minetest.get_modpath("moretrees").."/biome_defs.lua")
dofile(minetest.get_modpath("moretrees").."/crafts.lua")
dofile(minetest.get_modpath("moretrees").."/leafdecay.lua")
dofile(minetest.get_modpath("moretrees").."/saplings.lua")
+if moretrees.enable_replace_default_trees then
+ minetest.register_alias("mapgen_tree", "air")
+ minetest.register_alias("mapgen_leaves", "air")
+ minetest.register_alias("mapgen_apple", "air")
+ plantslib:register_generate_plant(moretrees.beech_biome, moretrees.beech_model)
+end
+
-- tree spawning setup
if moretrees.enable_apple_tree then