From: Liza Carvelli Date: Sat, 10 Aug 2024 12:58:35 +0000 (+0200) Subject: Fix 'sequence not found' text X-Git-Tag: v2.6~18 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=f158d4a371d3f02abeed726fbe3de7fdd25058b4;p=Questionable.git Fix 'sequence not found' text --- diff --git a/Questionable/Controller/QuestController.cs b/Questionable/Controller/QuestController.cs index a737166e..e031d988 100644 --- a/Questionable/Controller/QuestController.cs +++ b/Questionable/Controller/QuestController.cs @@ -347,7 +347,7 @@ internal sealed class QuestController : MiniTaskController var sequence = q.FindSequence(questToRun.Sequence); if (sequence == null) { - DebugState = $"Sequence {sequence} not found"; + DebugState = $"Sequence {questToRun.Sequence} not found"; Stop("Unknown sequence"); return; }