Fix quest tooltips including quest name twice v2.16
authorLiza Carvelli <liza@carvel.li>
Mon, 26 Aug 2024 14:13:27 +0000 (16:13 +0200)
committerLiza Carvelli <liza@carvel.li>
Mon, 26 Aug 2024 14:13:27 +0000 (16:13 +0200)
Questionable/Windows/QuestComponents/QuestTooltipComponent.cs

index cda7636c2af5b31de3b5804bad13768c5867dbb6..4fac3f95bd98fcd11d490275f2555d14adcd90a4 100644 (file)
@@ -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;
     }