Fix blast_furnace fuel not being consumed at twice the rate.

This commit is contained in:
MysticTempest 2022-05-18 05:30:05 -05:00
parent 66cd32b6ff
commit d10f8944ed
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ local function blast_furnace_node_timer(pos, elapsed)
elseif active then
el = math.min(el, fuel_totaltime - fuel_time)
-- The furnace is currently active and has enough fuel
fuel_time = fuel_time + el
fuel_time = (fuel_time + el) *2 --multiply speed of fuel consumption to match proper output
end
-- If there is a cookable item then check if it is ready yet