Skip to content

Commit

Permalink
Fix zone id & encounter id load condition tooltips
Browse files Browse the repository at this point in the history
Tier 10 is Dragonflight dungeons + raids
Tier 11 is Mythic+ dungeons

On beta EJ_GetCurrentTier() used to return 10, but since pre-patch default selection is M+

Fixes #4095
  • Loading branch information
mrbuds authored and Stanzilla committed Dec 4, 2022
1 parent 5161f51 commit 539c1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WeakAuras/Types_Retail.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function Private.InitializeEncounterAndZoneLists()
if encounter_list ~= "" then
return
end
for tier = EJ_GetCurrentTier(), EJ_GetNumTiers() do
for tier = 10, EJ_GetNumTiers() do
EJ_SelectTier(tier)
local tierName = EJ_GetTierInfo(tier)
for _, inRaid in ipairs({false, true}) do
Expand Down

0 comments on commit 539c1ce

Please sign in to comment.