Make sequence 0 non-interruptible, as you otherwise get quests with a lower priority than the MSQ

pull/42/head
Liza 2024-09-01 15:44:59 +02:00
parent 7f348207d3
commit 7c62a85a8a
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 1 additions and 1 deletions

View File

@ -724,7 +724,7 @@ internal sealed class QuestController : MiniTaskController<QuestController>, IDi
return false;
var (currentQuest, type) = details.Value;
if (type != ECurrentQuestType.Normal)
if (type != ECurrentQuestType.Normal || currentQuest.Sequence == 0)
return false;
if (currentQuest.Quest.Info.AlliedSociety != EAlliedSociety.None)