Bump ABM intervals to 1 second

This commit is contained in:
kay27 2022-04-29 12:37:45 +02:00 committed by cora
parent 69da3ffc05
commit 7420877077
1 changed files with 2 additions and 2 deletions

View File

@ -249,7 +249,7 @@ minetest.register_abm({
minetest.register_abm({
label = "mcl_mushroom:warped_checknode",
nodenames = {"mcl_mushroom:warped_checknode"},
interval = 0.1,
interval = 1,
chance = 1,
action = function(pos)
local nodepos = minetest.get_node({x = pos.x, y = pos.y + 1, z = pos.z})
@ -440,7 +440,7 @@ minetest.register_abm({
minetest.register_abm({
label = "mcl_mushroom:crimson_checknode",
nodenames = {"mcl_mushroom:crimson_checknode"},
interval = 0.1,
interval = 1,
chance = 1,
action = function(pos)
local nodepos = minetest.get_node({x = pos.x, y = pos.y + 1, z = pos.z})