Bagnon

Bagnon

122M Downloads

No Item Count no Funktion V 7.38

Vilogity opened this issue ยท 12 comments

commented

Hello
I testet the last Release if this fix my Problem.
Ich delete WoW Cache Folder and WTF entrys of Bagnon and install V 7.38.
Same Problem as before..... No Item Count, total Money "0" and dont see If i have the same Items
on my Bank or an other Char.
I take a look in the bagbrother.lua and see the Name of my Server and the 2 Char entrys I testet, this looks like in 7.32 but see nothing of this enrys Ingame.

sry..... :-(

commented

Same here, total Money "0" on all chars, it was so usefull with multiple alts, please fix it:(

commented

yeah the latest commit regarding this didn't do anything for my server Mal'Ganis either

commented

faction related perhaps ? item counts havent worked for my alli chars on Lightbringer with any of the beta versions, but surprisingly they work for my horde chars on Fizzcrank

commented

it's an empty table (because my realm isn't connected to any others)
GetRealmName() == "Mal'Ganis"

commented

Can you type "/dump GetAutoCompleteRealms()" in chat and post here the result?

commented

@jcadduono, yes I am aware of the empty table scenario and its already fixed internally. I just want to make sure everyone is having that problem, and not an additional one.

commented

line 144:

function Lib:IterateOwners()
	local realms = GetAutoCompleteRealms() or {REALM}
  local i, players, guilds, suffix = 0

to

function Lib:IterateOwners()
	local realms = GetAutoCompleteRealms() or {} -- backwards compatibility
	realms[1] = realms[1] or REALM
  local i, players, guilds, suffix = 0

IT'S ALIIIIIIIIIIIIIIIIIIVVVVVEEEEEEEEEEEEEEEE

since 7.3 I guess GetAutoCompleteRealms() now returns an empty table instead of nil
so we can just check if the 1st item in the table exists if not set it to REALM and the table is good to go!

ps your indenting :( need an editor plugin to convert to either 2 spaces or tab :p

commented

7.38 / 1 Char on Blackand EU
I get this after enter /dump GetAutoCompleteRealms()

Dump: value=GetAutoCompleteRealms()
[1]={
}

commented

Lightbringer:
Dump: value=GetAutoCompleteRealms()
[1]={
}

Fizzcrank:
Dump: value=GetAutoCompleteRealms()
[1]={
[1]="Aggramar",
[2]="Fizzcrank"
}

commented

Silvermoon EU ally

I get this after enter /dump GetAutoCompleteRealms()

Dump: value=GetAutoCompleteRealms()
[1]={
}

commented

Testet 7.39 and it works for me :-)

commented

Anyone still with the issue?