Skip to content

Commit

Permalink
TOC bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Sep 24, 2019
1 parent 2123261 commit e4d6230
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions REFlex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ local GetBattlefieldArenaFaction = _G.GetBattlefieldArenaFaction
local GetInstanceInfo = _G.GetInstanceInfo
local GetRandomBGInfo = _G.C_PvP.GetRandomBGInfo
local GetNumBattlefieldScores = _G.GetNumBattlefieldScores
local GetNumBattlefieldStats = _G.GetNumBattlefieldStats -- Deprecated
local GetMatchPVPStatColumns = _G.C_PvP.GetMatchPVPStatColumns
local GetActiveMatchDuration = _G.C_PvP.GetActiveMatchDuration
local GetCurrentArenaSeason = _G.GetCurrentArenaSeason
local GetCVar = _G.GetCVar
Expand All @@ -103,7 +103,7 @@ local RegisterAddonMessagePrefix = _G.C_ChatInfo.RegisterAddonMessagePrefix
local SendAddonMessage = _G.C_ChatInfo.SendAddonMessage
local ElvUI = _G.ElvUI

RE.Version = 271
RE.Version = 272
RE.LastSquash = 1531828800
RE.FoundNewVersion = false

Expand Down Expand Up @@ -902,13 +902,14 @@ end
function RE:PVPEnd()
RE.MatchData = {}

local StatsNum = GetMatchPVPStatColumns()
RE.MatchData.Map = select(8, GetInstanceInfo())
RE.MatchData.Winner = GetBattlefieldWinner()
RE.MatchData.PlayerSide = GetBattlefieldArenaFaction()
RE.MatchData.isArena = IsActiveBattlefieldArena()
RE.MatchData.Season = GetCurrentArenaSeason()
RE.MatchData.PlayersNum = GetNumBattlefieldScores()
RE.MatchData.StatsNum = GetNumBattlefieldStats()
RE.MatchData.StatsNum = #StatsNum
RE.MatchData.Duration = GetActiveMatchDuration()
RE.MatchData.Time = RE:GetUTCTimestamp()
RE.MatchData.isBrawl = IsInBrawl()
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: 80200
## Interface: 80205
## Title: |cFF74D06CRE|rFlex
## Notes: Collect statistics of played arena matches and battlegrounds.
## Version: 2.7.1
## Version: 2.7.2
## Author: AcidWeb
## SavedVariablesPerCharacter: REFlexSettings, REFlexDatabase, REFlexHonorDatabase
## X-Website: https://www.curseforge.com/wow/addons/reflex-battleground-historian
Expand Down

0 comments on commit e4d6230

Please sign in to comment.