Fix issue where max-durability items report 0 damage

This commit is contained in:
Gabriel Tofvesson 2024-10-12 00:26:02 +02:00
parent 4acde58d5c
commit 2b4baf7b76

View File

@ -323,9 +323,10 @@ local PAGES = {
local damageBar = nil local damageBar = nil
if damage ~= nil and maxDamage ~= nil then if damage ~= nil and maxDamage ~= nil then
damageBar = Progress:new{ damageBar = Progress:new{
progress = (damage / maxDamage), progress = (damage == 0 and maxDamage or damage / maxDamage),
width = state.width - 2, width = state.width - 2,
height = 1 height = 1,
fgColor = colors.green
} }
end end