From 21c9e2fcac3c575a1b5960614b65b656a2dfe9fd Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Mon, 26 Aug 2024 16:13:27 +0200 Subject: [PATCH] Fix quest tooltips including quest name twice --- Questionable/Windows/QuestComponents/QuestTooltipComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }