]> git.lizzy.rs Git - Crafter.git/blobdiff - mods/main/grass_spread.lua
Add book prototype
[Crafter.git] / mods / main / grass_spread.lua
index c94307b65e162921795131f776bea15646b0395e..9f399f3ea92e052695933e30f60a2fc15de30835 100644 (file)
@@ -1,17 +1,17 @@
 --grass spread abm
 minetest.register_abm({
-      label = "Grass Grow",
-      nodenames = {"main:dirt"},
-      neighbors = {"main:grass"},
-      interval = 10,
-      chance = 2000,
-      action = function(pos)
-            local light = minetest.get_node_light(pos, nil)
-            --print(light)
-            if light < 10 then
-                  --print("failed to grow grass at "..dump(pos))
-                  return
-            end
-            minetest.set_node(pos,{name="main:grass"})
-      end,
+       label = "Grass Grow",
+       nodenames = {"main:dirt"},
+       neighbors = {"main:grass"},
+       interval = 10,
+       chance = 2000,
+       action = function(pos)
+               local light = minetest.get_node_light(pos, nil)
+               --print(light)
+               if light < 10 then
+                       --print("failed to grow grass at "..dump(pos))
+                       return
+               end
+               minetest.set_node(pos,{name="main:grass"})
+       end,
 })