Skip to content

Commit

Permalink
Fixed a loading bug where bags wouldn't load.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cidan committed Sep 3, 2024
1 parent 1acb8d7 commit d4c9063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/loader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function ItemLoader:ProcessMixin(itemMixin)
local itemLocation = itemMixin:GetItemLocation()
if itemLocation == nil then return end

if not itemMixin:IsItemEmpty() then
if itemMixin:IsItemEmpty() then
local data = {}
---@cast data +ItemData
data.bagid, data.slotid = itemMixin:GetItemLocation():GetBagAndSlot()
Expand Down

0 comments on commit d4c9063

Please sign in to comment.