Bagnon

Bagnon

122M Downloads

One of bags gets included in bank window.

ShanKanis opened this issue ยท 3 comments

commented

Game patch - Classic WoW
Addon version - 8.2.2

When going to bank, one of bags is merged into bank window. It still appears the whole time in the inventory with no issues.

commented

FIX:
in Bagnon\external\Wildpants\components\bank.lua

find line number 20:
for slot = NUM_BAG_SLOTS, NUM_BAG_SLOTS + NUM_BANKBAGSLOTS do
replace with:
for slot = NUM_BAG_SLOTS + 1, NUM_BAG_SLOTS + NUM_BANKBAGSLOTS do

GG

commented

FIX:
in Bagnon\external\Wildpants\components\bank.lua

find line number 20:
for slot = NUM_BAG_SLOTS, NUM_BAG_SLOTS + NUM_BANKBAGSLOTS do
replace with:
for slot = NUM_BAG_SLOTS + 1, NUM_BAG_SLOTS + NUM_BANKBAGSLOTS do

GG

Nice catch. Thats the solution

commented

Its the miracle of the bag multiplication xD