Navigation Menu

Skip to content

Commit

Permalink
Default/furnace: Indicate dst full
Browse files Browse the repository at this point in the history
Indicate in the infotext when a furnace has filled up `dst` but still
has fuel. The info text shows the item as 100% with added "(output
full)" text, indicating that while it can cook the item, there is no
place for it in the `dst`. Emptying the `dst` should make the item
cook immediately and furnace resume normal operation.
  • Loading branch information
sofar authored and paramat committed Sep 3, 2016
1 parent 0664570 commit 1d6fbe0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mods/default/furnace.lua
Expand Up @@ -175,7 +175,11 @@ local function furnace_node_timer(pos, elapsed)
local item_percent = 0
if cookable then
item_percent = math.floor(src_time / cooked.time * 100)
item_state = item_percent .. "%"
if item_percent > 100 then
item_state = "100% (output full)"
else
item_state = item_percent .. "%"
end
else
if srclist[1]:is_empty() then
item_state = "Empty"
Expand Down

0 comments on commit 1d6fbe0

Please sign in to comment.