From 3d3a7b262fa7cd010dac09c7390cbc37f64ad6f7 Mon Sep 17 00:00:00 2001 From: Scott Harrison Date: Tue, 19 Jan 2021 21:57:54 -0500 Subject: [PATCH] Adds ability to display maximum renown level prerequisites. --- Wholly.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Wholly.lua b/Wholly.lua index a1be7bf..9eded99 100644 --- a/Wholly.lua +++ b/Wholly.lua @@ -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. @@ -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)