Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Trivial: Make furnace info text look nicer
Furnace inactive (Item: Not cookable; Fuel:
Empty)

--> becomes -->

Furnace inactive
(Item: Not cookable; Fuel: Empty)
  • Loading branch information
JRottm authored and sofar committed Aug 13, 2017
1 parent 67c01a4 commit d883012
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mods/default/furnace.lua
Expand Up @@ -208,11 +208,11 @@ local function furnace_node_timer(pos, elapsed)
end

local fuel_state = "Empty"
local active = "inactive "
local active = "inactive"
local result = false

if fuel_totaltime ~= 0 then
active = "active "
active = "active"
local fuel_percent = math.floor(fuel_time / fuel_totaltime * 100)
fuel_state = fuel_percent .. "%"
formspec = default.get_furnace_active_formspec(fuel_percent, item_percent)
Expand All @@ -229,7 +229,7 @@ local function furnace_node_timer(pos, elapsed)
minetest.get_node_timer(pos):stop()
end

local infotext = "Furnace " .. active .. "(Item: " .. item_state ..
local infotext = "Furnace " .. active .. "\n(Item: " .. item_state ..
"; Fuel: " .. fuel_state .. ")"

--
Expand Down

0 comments on commit d883012

Please sign in to comment.