-
Notifications
You must be signed in to change notification settings - Fork 7
Fix rgba error #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix rgba error #50
Conversation
Changed legacy function C_Reputation.GetFactionDataByID(factionID) behavior
HandyNotes_Achievements.lua
Outdated
| tooltip:SetFont(GameTooltipTextSmall) | ||
| local genderSuffix = (UnitSex("player") == 3 and "_FEMALE") or "" | ||
| local reputation = HNA:RGBToColorCode(FACTION_BAR_COLORS[standing]) .. _G["FACTION_STANDING_LABEL" .. standing .. genderSuffix] .. "|r" | ||
| --local genderSuffix = (UnitSex("player") == 3 and "_FEMALE") or "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove dead code?
HandyNotes_Achievements.lua
Outdated
| local tooltip | ||
| local activeNodes = {} | ||
|
|
||
| local _, ns = ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for simplicity, merge ns.api and HNA objects, and remove ns?
|
consider adding an appropriate message to CHANGELOG.md and adjusting the |
Removed dead code + used HNA object instead of new one
|
@Psykotik if you wish, hit the |
Changed legacy function C_Reputation.GetFactionDataByID(factionID) to behave as intended