forked from VoxeLibre/VoxeLibre
Fix blast_furnace fuel not being consumed at twice the rate.
This commit is contained in:
parent
66cd32b6ff
commit
d10f8944ed
|
@ -329,7 +329,7 @@ local function blast_furnace_node_timer(pos, elapsed)
|
||||||
elseif active then
|
elseif active then
|
||||||
el = math.min(el, fuel_totaltime - fuel_time)
|
el = math.min(el, fuel_totaltime - fuel_time)
|
||||||
-- The furnace is currently active and has enough fuel
|
-- 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
|
end
|
||||||
|
|
||||||
-- If there is a cookable item then check if it is ready yet
|
-- If there is a cookable item then check if it is ready yet
|
||||||
|
|
Loading…
Reference in New Issue