From 95a1c94b1b339f6e4f31d37f563abe126303d210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Tue, 17 Jul 2018 12:32:12 +0200 Subject: [PATCH] Added player rating to extended tooltip --- REFlex.lua | 2 +- REFlex.toc | 4 ++-- REFlexFunctions.lua | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/REFlex.lua b/REFlex.lua index f97d7c3..1001dd6 100644 --- a/REFlex.lua +++ b/REFlex.lua @@ -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 diff --git a/REFlex.toc b/REFlex.toc index 6211f3b..77c6c60 100644 --- a/REFlex.toc +++ b/REFlex.toc @@ -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 diff --git a/REFlexFunctions.lua b/REFlexFunctions.lua index 5166d8d..9f53a3d 100644 --- a/REFlexFunctions.lua +++ b/REFlexFunctions.lua @@ -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