From e5e115bd19a7392a8d12cc454c1af0593cf3d7c0 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 25 Sep 2024 10:15:16 +0000 Subject: [PATCH] Fix nil comparison bug --- items.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/items.lua b/items.lua index 7f877fe..201959f 100644 --- a/items.lua +++ b/items.lua @@ -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)))