From 2b4baf7b768f79079e3549d5e2fa55d77cb7a765 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 00:26:02 +0200 Subject: [PATCH] Fix issue where max-durability items report 0 damage --- itemcontroller.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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