Skip to content

Commit

Permalink
10.2.7 (54736)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 16, 2024
1 parent a0edc8a commit c955e2a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ function QuestMapFrame_OnLoad(self)
self:RegisterEvent("UNIT_QUEST_LOG_CHANGED");
self:RegisterEvent("AJ_QUEST_LOG_OPEN");
self:RegisterEvent("PLAYER_ENTERING_WORLD");
self:RegisterEvent("PLAYER_LEAVING_WORLD");
self:RegisterEvent("CVAR_UPDATE");

self.initialCampaignHeadersUpdate = false;
Expand Down Expand Up @@ -267,6 +268,8 @@ function QuestMapFrame_OnEvent(self, event, ...)
end
elseif ( event == "PLAYER_ENTERING_WORLD" ) then
self:Refresh();
elseif ( event == "PLAYER_LEAVING_WORLD" ) then
self.initialCampaignHeadersUpdate = false;
elseif ( event == "CVAR_UPDATE" ) then
local arg1 =...;
if ( arg1 == "questPOI" ) then
Expand Down

0 comments on commit c955e2a

Please sign in to comment.