Fix nil comparison bug

This commit is contained in:
Gabriel Tofvesson 2024-09-25 10:15:16 +00:00
parent 9ab090d9b9
commit e5e115bd19

View File

@ -219,7 +219,7 @@ end
function Cache:findAllowedSlots(target)
local matchingSlotsFunc = FILTER_MATCHING_SLOTS(target)
local slots = self:find(function(detail)
return detail == nil or (detail.count < detail.maxCount and matchingSlotsFunc(detail))
return detail.count == nil or (detail.count < detail.maxCount and matchingSlotsFunc(detail))
end)
table.sort(slots, function (a, b)
return (a.count ~= nil and (b.count == nil or a.maxCount > b.maxCount or (a.maxCount == b.maxCount and a.count > b.count)))