mirror of
https://github.com/ZhengPeiRu21/mod-individual-progression
synced 2025-11-29 23:44:51 +08:00
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:
@@ -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);
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user