From 176a0ccf91e0db10909d25203bf736e42a9ee25f Mon Sep 17 00:00:00 2001 From: Florian Brinker Date: Mon, 2 Nov 2020 21:53:39 +0100 Subject: [PATCH] Fix a bug with gendered labels --- AchievementInfoApplication.lua | 2 +- CHANGELOG.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/AchievementInfoApplication.lua b/AchievementInfoApplication.lua index 1f0c2be..00b925d 100644 --- a/AchievementInfoApplication.lua +++ b/AchievementInfoApplication.lua @@ -67,7 +67,7 @@ function AchievementInfo.onAchievementUpdated(_, achId) tmpOutput = tmpOutput .. ", " end - tmpOutput = tmpOutput .. description .. " " + tmpOutput = tmpOutput .. zo_strformat("<<1>>", description) .. " " tmpOutput = tmpOutput .. AchievementInfo.calcCriteriaColor(numCompleted, numRequired) .. numCompleted .. "|r" tmpOutput = tmpOutput .. AchievementInfo.clrDefault .. "/" .. "|r" tmpOutput = tmpOutput .. AchievementInfo.clrCriteriaComplete .. numRequired .. "|r" diff --git a/CHANGELOG.md b/CHANGELOG.md index 1932195..f3882ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ #### Notable Changes +##### Rekease 4.3 +* Fixed an error with gendered achievement descriptions + ##### Release 4.0 * Added accountwide settings * Added an "use accountwide settings" option to the settings of each character