summaryrefslogtreecommitdiff
path: root/dirt.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2015-11-07 20:50:50 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2015-11-07 20:50:50 +0000
commitea4d245f17dac0a61514ea129b51555fe17f86c7 (patch)
treebdada0f8bfdbe582224f26a2da7f7a9338cd3a82 /dirt.lua
parenta302d34ede9c90ed359b50cfc59c6015c0920ee9 (diff)
disable abm catch_up
Diffstat (limited to 'dirt.lua')
-rw-r--r--dirt.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/dirt.lua b/dirt.lua
index 1213d68..a19635e 100644
--- a/dirt.lua
+++ b/dirt.lua
@@ -68,6 +68,7 @@ minetest.register_abm({
nodenames = {"default:dirt_with_grass"},
interval = 5,
chance = 2,
+ catch_up = false,
action = function(pos, node)
local count_grasses = {}
local curr_max = 0
@@ -98,6 +99,7 @@ minetest.register_abm({
nodenames = {"group:ethereal_grass"},
interval = 2,
chance = 20,
+ catch_up = false,
action = function(pos, node)
local name = minetest.get_node({x = pos.x, y =pos.y + 1, z = pos.z}).name
local nodedef = minetest.registered_nodes[name]