Retail (11.0.2 build 56196): lua errors because GetWatchedFactionData no longer exists.
Langmans opened this issue ยท 2 comments
See https://warcraft.wiki.gg/wiki/API_C_Reputation.GetWatchedFactionData
I don't think a bugsack report is necessary here :)
I think currentReactionThreshold and nextReactionThreshold are min and max and currentStanding is the value in between:
I'm proposing a quick fix like this (untested because server maintenance a.t.m.):
local GetWatchedFactionInfo = _G.GetWachedFactionInfo or C_Reputation and C_Reputation.GetWatchedFactionData and function()
local data = C_Reputation.GetWatchedFactionData()
return data.name, data.reaction, data.currentReactionThreshold, data.nextReactionThreshold, data.currentStanding, data.factionID
end
Thank you for the report. I figured this addon would have issues. I've been busy with other things, but will get to it as soon as possible.