Skip to content

Commit

Permalink
removing item cache check for loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Cidan committed Apr 17, 2024
1 parent 9b2fd16 commit 72877d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ function items:StageBagForUpdate(bagid, kind, container)

-- If this is an actual item, add it to the callback container
-- so data is fetched from the server.
if not itemMixin:IsItemEmpty() and not itemMixin:IsItemDataCached() then
if not itemMixin:IsItemEmpty() then
container:Add(itemMixin)
elseif itemMixin:IsItemEmpty() then
data.isItemEmpty = true
Expand Down

0 comments on commit 72877d9

Please sign in to comment.