Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Apr 11, 2022
1 parent 241200d commit 80612f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Libs/LibOpenRaid/LibOpenRaid.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ to be implemented:
- make "player" unit information always be available even not in a group
- soulbind character (covenant choise) - probably not used in 10.0
- keystone info
- track interrupts
--]=]


Expand Down
4 changes: 2 additions & 2 deletions frames/window_main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2255,8 +2255,8 @@ local icon_frame_on_enter = function (self)
if (rioProfile and rioProfile.mythicKeystoneProfile) then
rioProfile = rioProfile.mythicKeystoneProfile

local previousScore = rioProfile.previousScore
local currentScore = rioProfile.currentScore
local previousScore = rioProfile.previousScore or 0
local currentScore = rioProfile.currentScore or 0

if (previousScore > currentScore) then
GameCooltip:AddLine("M+ Score:", previousScore .. " (|cFFFFDD11" .. currentScore .. "|r)", 1, "white")
Expand Down

0 comments on commit 80612f2

Please sign in to comment.