Fix 'sequence not found' text

master
Liza 2024-08-10 14:58:35 +02:00
parent 6f2ca7d438
commit f158d4a371
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ internal sealed class QuestController : MiniTaskController<QuestController>
var sequence = q.FindSequence(questToRun.Sequence);
if (sequence == null)
{
DebugState = $"Sequence {sequence} not found";
DebugState = $"Sequence {questToRun.Sequence} not found";
Stop("Unknown sequence");
return;
}