Remove TODO pending future discussions, revert timer change in composter code

This commit is contained in:
teknomunk 2024-06-08 14:51:29 -05:00
parent e64e9ad4ff
commit f673136891
2 changed files with 4 additions and 3 deletions

View File

@ -67,8 +67,7 @@ function mcl_cocoas.grow(pos)
return true
end
-- only caller was mcl_dye, now these can be local functions.
-- TODO: remove aliases, replace global functions with local functions.
-- only caller was mcl_dye, consider converting these into local functions.
local cocoa_place = mcl_cocoas.place
local cocoa_grow = mcl_cocoas.grow

View File

@ -114,7 +114,9 @@ local function composter_progress_chance(pos, node, chance)
-- the block will get updated by the node timer callback set in node reg def
if level == 7 then
local timer = get_node_timer(pos)
timer:start(1)
if not timer:is_started() then
timer:start(1)
end
end
end
end