Fix issue where max-durability items report 0 damage
This commit is contained in:
parent
4acde58d5c
commit
2b4baf7b76
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user