From: Liza Carvelli Date: Fri, 2 Aug 2024 07:59:40 +0000 (+0200) Subject: Check if the next msq quest can even be accepted X-Git-Tag: v2.0~6 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=634ac804af062e81e7be716c0726f25f0c403305;p=Questionable.git Check if the next msq quest can even be accepted --- diff --git a/Questionable/GameFunctions.cs b/Questionable/GameFunctions.cs index 6487eb98..76b03cfa 100644 --- a/Questionable/GameFunctions.cs +++ b/Questionable/GameFunctions.cs @@ -151,6 +151,7 @@ internal sealed unsafe class GameFunctions var msqQuest = GetMainScenarioQuest(questManager); if (msqQuest.CurrentQuest != 0 && _questRegistry.IsKnownQuest(msqQuest.CurrentQuest) && + IsReadyToAcceptQuest(msqQuest.CurrentQuest) && !questManager->IsQuestAccepted(msqQuest.CurrentQuest)) return msqQuest;