AQ gate closed during war effort

no matter if you set RequirePreAQQuests to 0 or 1
the player needs to progress to the AQ phase to open the gate.

RequirePreAQQuests = 1 , war effort + AQ quest line needs to be completed

RequirePreAQQuests = 0 , war effort needs to be completed

todo: right now you can't complete the war effort.
This commit is contained in:
Grimfeather
2025-05-09 13:20:58 +02:00
committed by GitHub
parent df37d9088d
commit 93037db6d6

View File

@@ -225,17 +225,10 @@ public:
return false;
}
if (sIndividualProgression->requirePreAQQuests)
{
// (RequirePreAQQuests = 1) - AQ gate closed after Nefarian kill. War effort starts. AQ Quest line needs to be done to open the gate.
return sIndividualProgression->isBeforeProgression(target, PROGRESSION_AQ);
}
else
{
// (RequirePreAQQuests = 0) - AQ gate open after Nefarian kill - you skip the war effort
// the AQ gate will be open if you manually set yourself to the pre-aq phase.
return sIndividualProgression->isBeforeProgression(target, PROGRESSION_PRE_AQ);
}
// (RequirePreAQQuests = 1) - AQ gate closed after Nefarian kill. War effort starts. AQ War effort + AQ Quest line needs to be done to open the gate.
// (RequirePreAQQuests = 0) - AQ gate closed after Nefarian kill. War effort starts. AQ War effort needs to be done to open the gate.
return sIndividualProgression->hasPassedProgression(target, PROGRESSION_PRE_AQ);
}
};