Bagnon

Bagnon

122M Downloads

Bag Break Resetting after /reload or logging out

Rennerie opened this issue ยท 4 comments

commented
  • 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.

commented

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)

commented

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.

commented

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

commented

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