Skip to content

Commit

Permalink
[mods/default] Fixed a bug causing furnace to update the chunk every …
Browse files Browse the repository at this point in the history
…tick.
  • Loading branch information
Unarelith committed Jul 18, 2020
1 parent fef2d21 commit 646fea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mods/default/blocks/furnace.lua
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ mod:block {
else
item_progress = 0
end
elseif ticks_remaining == 0 then
elseif ticks_remaining == 0 and current_state ~= 0 then
current_burn_time = 0
world:set_block_state(pos.x, pos.y, pos.z, 0)
end
Expand Down

0 comments on commit 646fea1

Please sign in to comment.