diff --git a/itemcontroller.lua b/itemcontroller.lua index 0eb4cae..e5b002f 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -323,9 +323,10 @@ local PAGES = { local damageBar = nil if damage ~= nil and maxDamage ~= nil then damageBar = Progress:new{ - progress = (damage / maxDamage), + progress = (damage == 0 and maxDamage or damage / maxDamage), width = state.width - 2, - height = 1 + height = 1, + fgColor = colors.green } end