spacing fixes

This commit is contained in:
Vanessa Ezekowitz 2014-08-07 21:46:56 -04:00
parent 25564985a2
commit 5bfbe63197
1 changed files with 6 additions and 6 deletions

View File

@ -52,9 +52,9 @@ if moretrees.enable_leafdecay then
chance = moretrees.leafdecay_chance,
action = function(pos, node, active_object_count, active_object_count_wider)
if minetest.find_node_near(pos, moretrees.leafdecay_radius, { "ignore", "moretrees:fir_trunk" }) then return end
process_drops(pos, node.name)
minetest.remove_node(pos)
nodeupdate(pos)
process_drops(pos, node.name)
minetest.remove_node(pos)
nodeupdate(pos)
end
})
@ -64,9 +64,9 @@ if moretrees.enable_leafdecay then
chance = moretrees.leafdecay_chance,
action = function(pos, node, active_object_count, active_object_count_wider)
if minetest.find_node_near(pos, moretrees.palm_leafdecay_radius, { "ignore", "moretrees:palm_trunk" }) then return end
process_drops(pos, node.name)
minetest.remove_node(pos)
nodeupdate(pos)
process_drops(pos, node.name)
minetest.remove_node(pos)
nodeupdate(pos)
end
})
end