Bag inventory not popping up

~Who are you? Who are so wise in the ways of addons~
Thank you for this work-around.

1 Like

Disable your Bagnon that is the problem Thank you!

Better Bags is the way.

Thank you very much!!! This worked and I’m so grateful to you!

I use Litebag which is handy, and although I have Syndicator installed, I generally untick it for characters that have TSM, which also shows if items are held by other characters as Im not sure if have the same option for two addons might cause a conflict. It may not, I dunno as Im not very tech minded, but I figure one add on to do the job is better than two. Perhaps if you’ve noticed any problems you could let me know.

I don’t use TSM, so I’m not sure! I have no idea how it even works. lol

1 Like

Permanent Fix for Bagnon Keybind Issues

After the recent patch, many players found that pressing “B” (or other keybinds) no longer opens Bagnon, due to a Lua error involving MoneyTypeInfo. Follow these steps to apply a permanent fix:


Windows Instructions

  1. Locate Your WoW Folder

    • Common path example:
      D:\Battle.net\World of Warcraft\_classic_era_\Interface\AddOns\BagBrother\core\classes
      
    • Note: The drive letter (D:) may be different on your system (e.g., C:, E:).
  2. Open playerMoney.lua

    • Use a text editor such as Notepad, Notepad++, or VSCode.
    • The file is named playerMoney.lua in the BagBrother\core\classes folder.
  3. Find the Following Line

    f.info = MoneyTypeInfo[f.Type]
    
  4. Replace it With This Safe Check

    if MoneyTypeInfo and MoneyTypeInfo[self.Type] then
        f.info = MoneyTypeInfo[self.Type]
    end
    
  5. Save and Reload

    • Save the file and then relaunch WoW.
    • Alternatively, type /reload in the in-game chat to refresh your UI.

Mac Instructions

  1. Open Finder

    • Press Cmd + Shift + G to bring up the “Go to Folder” prompt.
  2. Go to Your WoW Folder

    • Example path:
      /Applications/World of Warcraft/_classic_era_/Interface/AddOns/BagBrother/core/classes
      
    • Adjust based on your WoW version or custom install location if needed.
  3. Open playerMoney.lua

    • Use a text editor like TextEdit, VSCode, or BBEdit.
  4. Find the Following Line

    f.info = MoneyTypeInfo[f.Type]
    
  5. Replace it With This Safe Check

    if MoneyTypeInfo and MoneyTypeInfo[self.Type] then
        f.info = MoneyTypeInfo[self.Type]
    end
    
  6. Save and Reload

    • Save the file and restart WoW.
    • Alternatively, type /reload in the chat if you’re already in-game.

What Caused the Problem, and Why This Fix Works

The recent WoW patch made a change that either delayed or altered how MoneyTypeInfo gets loaded. Bagnon’s code (specifically in its BagBrother component) tried to read MoneyTypeInfo[f.Type] before MoneyTypeInfo was actually initialized. Lua raises an error when you attempt to index a nil value, which caused the addon to fail — and, as a side effect, keybinds like “B” stopped working.

By adding this conditional check:

if MoneyTypeInfo and MoneyTypeInfo[self.Type] then
    f.info = MoneyTypeInfo[self.Type]
end

we ensure the code only runs if MoneyTypeInfo already exists and has a valid entry for self.Type. This prevents the Lua error from occurring and restores normal functionality to your bag-opening keybinds.

1 Like

I have a couple of auction toons and enjoy hunting down and selling transmog (its one of my fun activities) and I can have a couple of hundred items available to sell so TSM helps me do it with less finger clicking. It has a pretty heavy addon memory but since I only use it for a couple of toons that just sit there selling its not a big deal.

I think I’ll just keep turning off Syndicator for them and leave it on for everyone else. But Litebag is good.

Yes, I’m having the same problem. I created 2 new toons today and the problem appears to be happening on ALL of my characters, old AND new. I hear the bag opening and closing. Things seem to go into the bag. The vendors can interact with my bags. I can sell Junk items and my money count goes up and down when I’m buying and selling. But I can’t open my bags as a group or individually. This is also happening with my Bank. It’s happening to my toon on both Galakrond and Blackhand servers. The sellers bags seem to be unaffected.

The permanent fix for this is posted here:

Worked! Thanks :slight_smile:

1 Like