Skip to content
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: Reputation bar is no longer 100% #13

Merged
merged 1 commit into from
Nov 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Modules/WunderBar/SubModules/DataBar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ function DB:OnEvent(event)
self.noData = false

if TXUI.IsRetail then
local friendshipID, _, _, _, _, _, _, _, nextThreshold = GetFriendshipReputation(factionID)
local friendshipID = GetFriendshipReputation(factionID)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Frankly, this makes me cringe a little less.


if friendshipID then
if not nextThreshold then
if friendshipID.friendshipFactionID > 0 then
if not friendshipID.nextThreshold then
minValue, maxValue, curValue = 0, 1, 1
end
elseif C_Reputation_IsFactionParagon(factionID) then
Expand Down