From 539c1ce029bd871ab71060b97e90524ca1aea65b Mon Sep 17 00:00:00 2001 From: Buds Date: Sun, 4 Dec 2022 16:33:59 +0100 Subject: [PATCH] Fix zone id & encounter id load condition tooltips 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 --- WeakAuras/Types_Retail.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeakAuras/Types_Retail.lua b/WeakAuras/Types_Retail.lua index baeb7eb13f..c191c6909a 100644 --- a/WeakAuras/Types_Retail.lua +++ b/WeakAuras/Types_Retail.lua @@ -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