Fix sorting by missing damage
This commit is contained in:
parent
ad81301ef1
commit
b12510a4ac
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user