No Item Count no Funktion V 7.38
Vilogity opened this issue ยท 12 comments
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..... :-(
Same here, total Money "0" on all chars, it was so usefull with multiple alts, please fix it:(
yeah the latest commit regarding this didn't do anything for my server Mal'Ganis either
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
it's an empty table (because my realm isn't connected to any others)
GetRealmName() == "Mal'Ganis"
@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.
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
7.38 / 1 Char on Blackand EU
I get this after enter /dump GetAutoCompleteRealms()
Dump: value=GetAutoCompleteRealms()
[1]={
}
Lightbringer:
Dump: value=GetAutoCompleteRealms()
[1]={
}
Fizzcrank:
Dump: value=GetAutoCompleteRealms()
[1]={
[1]="Aggramar",
[2]="Fizzcrank"
}
Silvermoon EU ally
I get this after enter /dump GetAutoCompleteRealms()
Dump: value=GetAutoCompleteRealms()
[1]={
}