Skip to content

Commit

Permalink
Fixed 3v3 filter
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Nov 1, 2022
1 parent 3d7d0f6 commit 4a1ac79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion REFlex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ local SendAddonMessage = _G.C_ChatInfo.SendAddonMessage
local PlaySound = _G.PlaySound
local ElvUI = _G.ElvUI

RE.Version = 3300
RE.Version = 3301
RE.LastSquash = 1602662400
RE.FoundNewVersion = false

Expand Down
2 changes: 1 addition & 1 deletion REFlex.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 100000
## Title: |cFF74D06CRE|rFlex
## Notes: Collect statistics of played arena matches and battlegrounds.
## Version: 3.3.0
## Version: 3.3.1
## Author: AcidWeb
## SavedVariablesPerCharacter: REFlexSettings, REFlexDatabase, REFlexHonorDatabase
## X-WoWI-ID: 19190
Expand Down
2 changes: 1 addition & 1 deletion REFlexFunctions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ function RE:BracketFilter(rowdata)
if RE.Settings.Filters.Bracket == 2 then
return RE.Database[rowdata[11]].isSoloShuffle
else
if RE.Database[rowdata[11]].PlayersNum == RE.Settings.Filters.Bracket then
if RE.Database[rowdata[11]].PlayersNum == RE.Settings.Filters.Bracket and not RE.Database[rowdata[11]].isSoloShuffle then
return true
else
return false
Expand Down

0 comments on commit 4a1ac79

Please sign in to comment.