spacing fixes
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>
Fri, 8 Aug 2014 01:46:56 +0000 (21:46 -0400)
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>
Fri, 8 Aug 2014 01:51:55 +0000 (21:51 -0400)
leafdecay.lua

index 9b5f32a5e8451a1b35690d4f3a547a93483671f9..a22213a7afb4639865124d897676caeb91212404 100644 (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