mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-12-23 16:39:33 +01:00
Bump ABM intervals to 1 second
This commit is contained in:
parent
69da3ffc05
commit
7420877077
1 changed files with 2 additions and 2 deletions
|
@ -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})
|
||||
|
|
Loading…
Reference in a new issue