1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2025-10-31 22:05:25 +01:00

Fix vines nodetimer never starting on new nodes (#76)

This commit is contained in:
Niklp
2025-10-03 23:34:51 +02:00
committed by GitHub
parent b7be6de601
commit a8c2dfd012

View File

@@ -197,7 +197,7 @@ vines.register_vine = function( name, defs, def )
minetest.set_node(bottom, {
name = node.name, param2 = node.param2})
local timer = minetest.get_node_timer(bottom_node)
local timer = minetest.get_node_timer(bottom)
timer:start(math.random(growth_min, growth_max))
end