Bagnon icon indicating copy to clipboard operation
Bagnon copied to clipboard

Bag Break Resetting after /reload or logging out

Open Rennerie opened this issue 1 year ago • 4 comments

  • Game Version 10.2.5
  • Addon Version 10.2.7
  • Retail

Whenever I load into the game or do a /reload, the Bag Break resets back to None, instead of By Type. Reproduced by loading in or /reload. I have disabledd all other addons, issue still exists.

No error logs, as its just not remembering the setting between sessions.

Rennerie avatar Dec 30 '23 18:12 Rennerie

Same issue here. does NOT occur in 10.2.6, DOES occur in 10.2.7, even with no other addons or libraries installed (other than what bagnon installs via the Curse client)

Fl1pp3d0ff avatar Dec 31 '23 13:12 Fl1pp3d0ff

Same issue, I went back to 10.2.6 and it resolved it. Seems to have started after the new "break by type" was introduced.

ArcticNerd avatar Jan 01 '24 00:01 ArcticNerd

It was said in issue #1834 that it was solved internally. Just updated to 10.2.9 but the problem still occurs.

ErikSlump avatar Jan 03 '24 13:01 ErikSlump

In the file BagBrother/ItemGroup.lua, there should be a line like: if self:GetProfile().bagBreak and x > 0 then

As it now seems to store it as a value of 0, 1 or 2, change this to : if self:GetProfile().bagBreak and self:GetProfile().bagBreak > 0 and x > 0 then

Centias avatar Jul 20 '24 02:07 Centias