From: Liza Carvelli Date: Mon, 26 Aug 2024 14:13:27 +0000 (+0200) Subject: Fix quest tooltips including quest name twice X-Git-Tag: v2.16^0 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=21c9e2fcac3c575a1b5960614b65b656a2dfe9fd;p=Questionable.git Fix quest tooltips including quest name twice --- diff --git a/Questionable/Windows/QuestComponents/QuestTooltipComponent.cs b/Questionable/Windows/QuestComponents/QuestTooltipComponent.cs index cda7636c..4fac3f95 100644 --- a/Questionable/Windows/QuestComponents/QuestTooltipComponent.cs +++ b/Questionable/Windows/QuestComponents/QuestTooltipComponent.cs @@ -200,7 +200,7 @@ internal sealed class QuestTooltipComponent if (questInfo.IsMainScenarioQuest) name += $" ({questInfo.QuestId}, MSQ)"; else - name += $" {questInfo.Name} ({questInfo.QuestId})"; + name += $" ({questInfo.QuestId})"; return name; }