From b4fb6ed2aec572b955b2d476330203c8b8bc2168 Mon Sep 17 00:00:00 2001 From: andrew6180 <16847730+andrew6180@users.noreply.github.com> Date: Mon, 10 Jun 2024 11:37:40 -0700 Subject: [PATCH] ascension can just register any event --- frames/window_mythicplus/window_end_of_run.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frames/window_mythicplus/window_end_of_run.lua b/frames/window_mythicplus/window_end_of_run.lua index c2903361..763be0f4 100644 --- a/frames/window_mythicplus/window_end_of_run.lua +++ b/frames/window_mythicplus/window_end_of_run.lua @@ -87,10 +87,7 @@ _G.MythicDungeonFrames = mythicDungeonFrames --frame to handle loot events local lootFrame = CreateFrame("frame", "DetailsEndOfMythicLootFrame", UIParent) lootFrame:RegisterEvent("BOSS_KILL") - -if (C_EventUtils.IsEventValid("ENCOUNTER_LOOT_RECEIVED")) then - lootFrame:RegisterEvent("ENCOUNTER_LOOT_RECEIVED") -end +lootFrame:RegisterEvent("ENCOUNTER_LOOT_RECEIVED") --register the loot players looted at the end of the mythic dungeon lootFrame.LootCache = {}