Fix nil comparison bug
This commit is contained in:
parent
9ab090d9b9
commit
e5e115bd19
@ -219,7 +219,7 @@ end
|
|||||||
function Cache:findAllowedSlots(target)
|
function Cache:findAllowedSlots(target)
|
||||||
local matchingSlotsFunc = FILTER_MATCHING_SLOTS(target)
|
local matchingSlotsFunc = FILTER_MATCHING_SLOTS(target)
|
||||||
local slots = self:find(function(detail)
|
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)
|
end)
|
||||||
table.sort(slots, function (a, b)
|
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)))
|
return (a.count ~= nil and (b.count == nil or a.maxCount > b.maxCount or (a.maxCount == b.maxCount and a.count > b.count)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user