From: Vanessa Ezekowitz Date: Sun, 20 Jan 2013 19:04:10 +0000 (-0500) Subject: fixed birch and spruce always appearing above their planted saplings X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=70940adb50323104ad491e240182af1b9da6ca40;p=zefram%2Fminetest%2Fmoretrees.git fixed birch and spruce always appearing above their planted saplings --- diff --git a/init.lua b/init.lua index c6012fd..b7af99b 100644 --- a/init.lua +++ b/init.lua @@ -94,6 +94,7 @@ plantslib:grow_plants(sapling_interval,sapling_chance,"jungletree:sapling",nil,n -- Code to spawn a birch tree function moretrees:grow_birch(pos) + minetest.env:remove_node(pos) if math.random(1,2) == 1 then minetest.env:spawn_tree(pos, moretrees.birch_model1) else @@ -104,6 +105,7 @@ end -- Code to spawn a spruce tree function moretrees:grow_spruce(pos) + minetest.env:remove_node(pos) if math.random(1,2) == 1 then minetest.env:spawn_tree(pos, moretrees.spruce_model1) else