Skip to content

Commit

Permalink
Added player rating to extended tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Jul 17, 2018
1 parent bd2474a commit 95a1c94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion REFlex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ local RegisterAddonMessagePrefix = _G.C_ChatInfo.RegisterAddonMessagePrefix
local SendAddonMessage = _G.C_ChatInfo.SendAddonMessage
local ElvUI = _G.ElvUI

RE.Version = 250
RE.Version = 251
RE.LastSquash = 1531828800
RE.FoundNewVersion = false

Expand Down
4 changes: 2 additions & 2 deletions REFlex.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 70300
## Interface: 80000
## Title: |cFF74D06CRE|rFlex
## Notes: Collect statistics of played arena matches and battlegrounds.
## Version: 2.5.0
## Version: 2.5.1
## Author: AcidWeb
## SavedVariablesPerCharacter: REFlexSettings, REFlexDatabase, REFlexHonorDatabase
## X-Website: https://www.curseforge.com/wow/addons/reflex-battleground-historian
Expand Down
2 changes: 1 addition & 1 deletion REFlexFunctions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function RE:GetRGBTeamDetails(databaseID, player)
RE.Database[databaseID].Players[i][2],
RE:AbbreviateNumbers(RE.Database[databaseID].Players[i][10]),
RE:AbbreviateNumbers(RE.Database[databaseID].Players[i][11]),
"|n["..RE:RatingChangeClean(RE.Database[databaseID].Players[i][13], databaseID).."]"})
"|n"..RE.Database[databaseID].Players[i][12].." ["..RE:RatingChangeClean(RE.Database[databaseID].Players[i][13], databaseID).."]"})
end
end
return team, RE:AbbreviateNumbers(damageSum), RE:AbbreviateNumbers(healingSum), kbSum
Expand Down

0 comments on commit 95a1c94

Please sign in to comment.