Make spawners mobs faster

This commit is contained in:
Juraj Vajda 2023-07-12 11:54:12 -04:00
parent 15466f92f3
commit 2d5850a9da

View File

@ -273,7 +273,7 @@ function spawners_mobs.tick(pos)
return
end
minetest.get_node_timer(pos):start(math.random(30, 60))
minetest.get_node_timer(pos):start(math.random(5, 15))
end
-- how often a spawn failure tick is retried (e.g. too dark)
@ -289,7 +289,7 @@ function spawners_mobs.tick_short(pos)
meta:set_int('tick_short', tick_short_counter)
-- print('tick_short_counter: ' .. tick_short_counter .. ' at ' .. minetest.pos_to_string(pos))
end
minetest.get_node_timer(pos):start(math.random(20, 60))
minetest.get_node_timer(pos):start(math.random(5, 10))
-- minetest.get_node_timer(pos):start(math.random(10, 20))
end