Fix sorting by missing damage

This commit is contained in:
Gabriel Tofvesson 2024-10-12 18:04:41 +02:00
parent ad81301ef1
commit b12510a4ac

View File

@ -288,7 +288,7 @@ local PAGES = {
local function sortByDamage(invert, tiebreaker)
return _genSort(function(v)
local damage = v:getDamage()
return damage == 0 and 1 or (damage / v:getMaxDamage())
return (damage == nil or damage == 0) and 1 or (damage / v:getMaxDamage())
end, invert, tiebreaker)
end