Skip to content

Commit

Permalink
Fixed a bug where bank bag 7 was excluded from classic.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cidan committed Apr 6, 2024
1 parent 3a9da1a commit 89fdd31
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/classic/constants.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const.BANK_BAGS = {
[Enum.BagIndex.BankBag_4 - 1] = Enum.BagIndex.BankBag_4 - 1,
[Enum.BagIndex.BankBag_5 - 1] = Enum.BagIndex.BankBag_5 - 1,
[Enum.BagIndex.BankBag_6 - 1] = Enum.BagIndex.BankBag_6 - 1,
[Enum.BagIndex.BankBag_7 - 1] = Enum.BagIndex.BankBag_7 - 1,
}


Expand All @@ -34,6 +35,7 @@ const.BANK_ONLY_BAGS = {
[Enum.BagIndex.BankBag_4 - 1] = Enum.BagIndex.BankBag_4 - 1,
[Enum.BagIndex.BankBag_5 - 1] = Enum.BagIndex.BankBag_5 - 1,
[Enum.BagIndex.BankBag_6 - 1] = Enum.BagIndex.BankBag_6 - 1,
[Enum.BagIndex.BankBag_7 - 1] = Enum.BagIndex.BankBag_7 - 1,
}
const.BANK_ONLY_BAGS_LIST = {
Enum.BagIndex.BankBag_1 - 1,
Expand All @@ -42,6 +44,7 @@ const.BANK_ONLY_BAGS_LIST = {
Enum.BagIndex.BankBag_4 - 1,
Enum.BagIndex.BankBag_5 - 1,
Enum.BagIndex.BankBag_6 - 1,
Enum.BagIndex.BankBag_7 - 1,
}

-- BACKPACK_BAGS contains all the bags that are part of the backpack, including
Expand Down

0 comments on commit 89fdd31

Please sign in to comment.