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 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=9e7214015206a35deb3845161bd489af455c3c5f;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; }