Skip to content

Commit

Permalink
Update delves-progress-tooltip.lua
Browse files Browse the repository at this point in the history
Closes: #28
  • Loading branch information
teelolws committed Oct 6, 2024
1 parent 1a340fd commit a7623b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/delves-progress-tooltip.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ local addonName, addon = ...

-- from Blizzard_DelvesDashboardUI.lua
local function hasActiveSeason()
DelvesDashboardFrame.uiDisplaySeason = C_DelvesUI.GetCurrentDelvesSeasonNumber();
return DelvesDashboardFrame.uiDisplaySeason and DelvesDashboardFrame.uiDisplaySeason > 0;
local uiDisplaySeason = C_DelvesUI.GetCurrentDelvesSeasonNumber();
return uiDisplaySeason and uiDisplaySeason > 0;
end

local function addTopDelveRunsToTooltip()
Expand Down

0 comments on commit a7623b5

Please sign in to comment.