update phasing of the Scarab Gong

the Scarab Gong is hidden before the AQ war event 
and after the AQ war.

This prevents players from completing the quest early.
This commit is contained in:
Grimfeather
2025-05-12 04:00:27 +02:00
committed by GitHub
parent 90ca45babe
commit 3a38f27123

View File

@@ -88,11 +88,18 @@ public:
}
/*
Gong can be seen even if the AQ raid is released because during the original event,
some players could still activate the gong during the first 24 hours.
This allows to simulate this effect (IndividualProgression.RequirePreAQQuests = 0)
The Scarab Gong can still be seen after the AQ raid is released,
because during the original event some players could still activate it during the first 24 hours.
*/
return sIndividualProgression->isBeforeProgression(target, PROGRESSION_AQ);
if (sIndividualProgression->hasPassedProgression(target, PROGRESSION_AQ))
{
return sIndividualProgression->isBeforeProgression(target, PROGRESSION_PRE_AQ);
}
else
{
return sIndividualProgression->hasPassedProgression(target, PROGRESSION_BLACKWING_LAIR);
}
}
void NextStage(uint32 timeUntil = 100)