Empty black bar from pvp queues/'Enter battle' message poping for no reason
Hantunaar opened this issue ยท 0 comments
Hey since P2 landed on TBC servers, I'm having an error whenever I open guild panel and a change in the members list happens (can be someone logging in, disconnecting, or me changing the arrangement).
No lua error, just "Addon X has been blocked" message where Addon X change almost everytime.
The thing is, this error triggers the "< right click and choose 'Enter Battle' if 'Enter Battle' button does not work" black bar. The text isn't there, because I'm not queuing for pvp, so neither is the button, but the bar pops and won't move. I have to do a /reload to get ride of it.
Edit: Well after looking at the code in Details\Startup.lua it doesn't seems to be too hard to fix. Putting a if MiniMapBattlefieldFrame:IsShown()
earlier should prevent the bar from showing if we're not queuing for pvp. Maybe line 555? Something like (StaticPopup1:IsShown() or StaticPopup2:IsShown()) then
=> if MiniMapBattlefieldFrame:IsShown() and (StaticPopup1:IsShown() or StaticPopup2:IsShown()) then