Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- QuestHubber.lua Fri Mar 15 04:32:16 2013
- +++ QuestHubber.lua.modified Thu Oct 16 14:52:25 2014
- @@ -439,7 +439,7 @@
- pin:ClearAllPoints();
- pin.questHubberID = id;
- -- pin:SetParent(WorldMapDetailFrame);
- - pin:SetFrameLevel(WorldMapPOIFrame:GetFrameLevel()-1);
- + pin:SetFrameLevel(WorldMapPOIFrame:GetFrameLevel()+1);
- pin:SetPoint("CENTER", WorldMapDetailFrame, "TOPLEFT", xcoord/10000*WorldMapDetailFrame:GetWidth(), -ycoord/10000*WorldMapDetailFrame:GetHeight());
- -- pin:SetFrameStrata("FULLSCREEN");
- pin:Show();
- @@ -771,7 +771,7 @@
- -- get closed tabs
- local closed = {}
- for i=1,GetNumQuestLogEntries() do
- - local title, _, _, _, isHeader, isCollapsed = GetQuestLogTitle(i);
- + local title, _, _, isHeader, isCollapsed = GetQuestLogTitle(i);
- if (isCollapsed) then
- closed[title] = true
- end
- @@ -780,7 +780,7 @@
- if (not self.questInit) then
- for i=1,GetNumQuestLogEntries() do
- - local _, _, _, _, _, _, _, _, id = GetQuestLogTitle(i);
- + local _, _, _, _, _, _, _, id = GetQuestLogTitle(i);
- if (id and id > 0) then
- self.questLog[id] = true;
- end
- @@ -792,7 +792,7 @@
- -- self:Debug("QUEST_LOG_UPDATE");
- local tempLog = {};
- for i=1,GetNumQuestLogEntries() do
- - local name, _, _, _, _, _, _, _, id = GetQuestLogTitle(i);
- + local name, _, _, _, _, _, _, id = GetQuestLogTitle(i);
- -- self:Debug(" ", name, id);
- if (id and id > 0) then
- tempLog[id] = name;
- @@ -824,7 +824,7 @@
- -- restore closed tabs
- for i=1,GetNumQuestLogEntries() do
- - local title, _, _, _, isHeader = GetQuestLogTitle(i);
- + local title, _, _, isHeader = GetQuestLogTitle(i);
- if closed[title] then
- CollapseQuestHeader(i)
- end
- @@ -838,7 +838,7 @@
- function core:AbandonQuest()
- -- saved quest was abandoned
- -- self:Debug("AbandonQuest");
- - local name, _, _, _, _, _, _, _, id = GetQuestLogTitle(self.abandonQuest);
- + local name, _, _, _, _, _, _, id = GetQuestLogTitle(self.abandonQuest);
- self:Debug("Quest abandoned:",name);
- self.questLog[id] = nil;
- self:UpdatePins(true)
Advertisement
Add Comment
Please, Sign In to add comment