Skip to content

Commit

Permalink
9.0.07.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LanceDH committed Mar 10, 2021
1 parent 81b1e3a commit 1cc8330
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Callings/CallingsBoard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,8 @@ function WQT_CallingsBoardDisplayMixin:OnEnter()
GameTooltip_AddBlankLineToTooltip(GameTooltip);
GameTooltip_AddNormalLine(GameTooltip, CALLING_QUEST_TOOLTIP_DESCRIPTION, true);
GameTooltip_AddQuestRewardsToTooltip(GameTooltip, questID, TOOLTIP_QUEST_REWARDS_STYLE_CALLING_REWARD);

end



GameTooltip:Show();
GameTooltip.recalculatePadding = true;
end
Expand Down
6 changes: 6 additions & 0 deletions Data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1425,6 +1425,12 @@ end

-- This is just easier to maintain than changing the entire string every time
_V["PATCH_NOTES"] = {
{["version"] = "9.0.07",
["minor"] = 2,
["fixes"] = {
"Fixed the 'C_QuestLog.IsThreatQuest' error.",
},
},
{["version"] = "9.0.07",
["intro"] = { "9.0.5 compatibility and fixes." },
["fixes"] = {
Expand Down
4 changes: 4 additions & 0 deletions Dataprovider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,10 @@ function QuestInfoMixin:IsDisliked()
return WQT_Utils:QuestIsDisliked(self.questId);
end

function QuestInfoMixin:DataIsValid()
return self.questId ~= nil;
end

----------------------------
-- MIXIN
----------------------------
Expand Down
2 changes: 2 additions & 0 deletions MapPinProvider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,8 @@ end

function WQT_PinMixin:UpdateVisuals()
local questInfo = self.questInfo;
if (not questInfo:DataIsValid()) then return end;

local settingCenterType = WQT_Utils:GetSetting("pin", "centerType");
local _, _, _, timeStringShort = WQT_Utils:GetQuestTimeString(questInfo);
local tagInfo = questInfo:GetTagInfo();
Expand Down
2 changes: 1 addition & 1 deletion WorldQuestTab.toc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Title: World Quest Tab
## Notes: Creates a new quest tab to keep track of world quests.
## Author: LanceDH
## Version: 9.0.07
## Version: 9.0.07.2
## SavedVariables: BWQDB

WorldQuestTab.xml
Expand Down

0 comments on commit 1cc8330

Please sign in to comment.