View Single Post
08-13-18, 04:10 PM   #1
scrable
A Murloc Raider
 
scrable's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2011
Posts: 9
Action Forbidden

I'm trying to solve an issue I have had once the function ReportPlayerIsPVPAFK() was changed to protected some time around 5.0.1. I've been lazy and ignored the issue until now, but I'd like to fix it. I continue to get taints from the target dropdown menu for reporting a player away in a battleground. The only handling I do for menus is
Code:
	self.menu = menu
	self:SetScript("OnEnter", UnitFrame_OnEnter)
	self:SetScript("OnLeave", UnitFrame_OnLeave)
	self:RegisterForClicks"AnyUp"
inside shared for all units. The information provided by the taint log only directs me to the FrameXML\UIDropDownMenu which I don't know how to deal with. I'm not really sure what other informations I need to provide for debugging this other than this. I don't know how to hook into Blizzard call for this function. Thank you!
  Reply With Quote