[Jamba] Issues with inviting my group since 3.1
After install the patch my group REFUSES to group with me =(
I click my invite key and they automatically refuse the invite. They must not like me anymore.
Anyway, I don't know if this has something to do with Jamba or not. I had to unclick the "automatically accept group invites from friends" (or one of those options) to get it to at least put up the invite window. So, I don't know if it's a main WoW setting someplace, another addon, Jamba or what....
Anyone else run into this issue?
A workaround that keeps the Auto Accept working...
Folks, there's a better fix...
I ran into this issue in my own addon, and asked for help at the wowace forum.
The user Borlox gave me an effective piece of code
Code:
for i=1, STATICPOPUP_NUMDIALOGS do
local dlg = _G["StaticPopup"..i]
if dlg.which == "PARTY_INVITE" then
dlg.inviteAccepted = 1
break
end
end
StaticPopup_Hide( "PARTY_INVITE" )
So, update the StaticPopup_Hide( "PARTY_INVITE" ) so it looks like the example above and it will work.
NOTE: It worked in my addon, but I don't use Jamba, so I can't guarantee it will work there.
Hope that helps
Please visit the official Jamba Thread for further info.