Skip to content

Commit

Permalink
Adds ability to display maximum renown level prerequisites.
Browse files Browse the repository at this point in the history
  • Loading branch information
smaitch committed Jan 20, 2021
1 parent 6727e9d commit 3d3a7b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Wholly.lua
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@
-- Adds the ability to use Blizzard's user waypoint.
-- Changes interface to 90002.
-- 082 *** Requires Grail 114 or later ***
-- Adds the ability to display covenant renown level prerequisites.
-- Adds the ability to display covenant renown level prerequisites (minimum and maximum).
-- Adds the ability to display calling quests availability prerequisites.
-- Adds the ability to display quest types for biweekly, threat and calling quests.
-- Adds the ability to display covenant talent prerequisites.
Expand Down Expand Up @@ -2745,6 +2745,8 @@ WorldMapFrame:AddDataProvider(self.mapPinsProvider)
return format("|c%s%s|r", colorCode, message)
elseif questCode == '$' then
return format("|c%s%s - %s|r", colorCode, LANDING_PAGE_RENOWN_LABEL, C_Covenants.GetCovenantData(subcode).name or "???", numeric)
elseif questCode == '*' then
return format("|c%s%s - %s <|r", colorCode, LANDING_PAGE_RENOWN_LABEL, C_Covenants.GetCovenantData(subcode).name or "???", numeric)
elseif questCode == '%' then
local _, mainTitle, title = Grail:_GarrisonTalentResearched(numeric)
return format("|c%s%s - %s|r", colorCode, mainTitle, title)
Expand Down

0 comments on commit 3d3a7b2

Please sign in to comment.