Skip to content

Commit

Permalink
fix bugs from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
insunaa committed Nov 29, 2022
1 parent 5e7feb9 commit bdfdee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QEGearImporter/questionablyepic_enhanced.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ function scanGear()
addPrint("")
addPrint("### GEAR FROM BAGS ###")

for bag=0, NUM_BAG_SLOTS + GetNumBankSlots() do
if GetContainerNumSlots(bag) != 0 then
for bag=0, (NUM_BAG_SLOTS + GetNumBankSlots()) do
if (GetContainerNumSlots(bag) ~= 0) then
for bagSlots=1, GetContainerNumSlots(bag) do
--print("Inside the bag this time");
local itemID = GetContainerItemID(bag, bagSlots);
Expand Down

0 comments on commit bdfdee2

Please sign in to comment.