From f158d4a371d3f02abeed726fbe3de7fdd25058b4 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sat, 10 Aug 2024 14:58:35 +0200 Subject: [PATCH] Fix 'sequence not found' text --- Questionable/Controller/QuestController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }