Skip to content

Commit

Permalink
Fixed possible UI errors on non-english clients
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Mar 18, 2019
1 parent d558e83 commit 2626ba5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion REFlex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ local RegisterAddonMessagePrefix = _G.C_ChatInfo.RegisterAddonMessagePrefix
local SendAddonMessage = _G.C_ChatInfo.SendAddonMessage
local ElvUI = _G.ElvUI

RE.Version = 266
RE.Version = 267
RE.LastSquash = 1531828800
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: 80100
## Title: |cFF74D06CRE|rFlex
## Notes: Collect statistics of played arena matches and battlegrounds.
## Version: 2.6.6
## Version: 2.6.7
## Author: AcidWeb
## SavedVariablesPerCharacter: REFlexSettings, REFlexDatabase, REFlexHonorDatabase
## X-Website: https://www.curseforge.com/wow/addons/reflex-battleground-historian
Expand Down
11 changes: 11 additions & 0 deletions REFlexStructures.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,25 +112,36 @@ RE.MapListStat = {

RE.RaceIcons = {
["Human"] = {0, 0.125, 0, 0.25},
["Humans"] = {0, 0.125, 0, 0.25},
["Dwarf"] = {0.125, 0.25, 0, 0.25},
["Dwarves"] = {0.125, 0.25, 0, 0.25},
["Gnome"] = {0.25, 0.375, 0, 0.25},
["Gnomes"] = {0.25, 0.375, 0, 0.25},
["Night Elf"] = {0.375, 0.5, 0, 0.25},
["Night elves"] = {0.375, 0.5, 0, 0.25},
["Tauren"] = {0, 0.125, 0.25, 0.5},
["Undead"] = {0.125, 0.25, 0.25, 0.5},
["Troll"] = {0.25, 0.375, 0.25, 0.5},
["Trolls"] = {0.25, 0.375, 0.25, 0.5},
["Orc"] = {0.375, 0.5, 0.25, 0.5},
["Ors"] = {0.375, 0.5, 0.25, 0.5},
["Blood Elf"] = {0.5, 0.625, 0.25, 0.5},
["Blood elves"] = {0.5, 0.625, 0.25, 0.5},
["Draenei"] = {0.5, 0.625, 0, 0.25},
["Goblin"] = {0.629, 0.750, 0.25, 0.5},
["Goblins"] = {0.629, 0.750, 0.25, 0.5},
["Worgen"] = {0.629, 0.750, 0, 0.25},
["Pandaren"] = {0.756, 0.881, 0, 0.25},
["Nightborne"] = {0.375, 0.5, 0, 0.25},
["Highmountain Tauren"] = {0, 0.125, 0.25, 0.5},
["Void Elf"] = {0.5, 0.625, 0.25, 0.5},
["Void elves"] = {0.5, 0.625, 0.25, 0.5},
["Lightforged Draenei"] = {0.5, 0.625, 0, 0.25},
["Dark Iron Dwarf"] = {0.125, 0.25, 0, 0.25},
["Dark Iron Dwarves"] = {0.125, 0.25, 0, 0.25},
["Mag'har Orc"] = {0.375, 0.5, 0.25, 0.5},
["Zandalari Troll"] = {0.25, 0.375, 0.25, 0.5},
["Zandalari Trolls"] = {0.25, 0.375, 0.25, 0.5},
["Kul Tiran"] = {0, 0.125, 0, 0.25}
}

Expand Down

0 comments on commit 2626ba5

Please sign in to comment.