fix(Scripts/Raids): Phase 3 of Razorgore encounter should start when all eggs are destroyed. (#10837)

Fixes #10770.
This commit is contained in:
UltraNix
2022-03-06 18:27:13 +01:00
committed by GitHub
parent dc57964211
commit 41cc053c68

View File

@@ -254,7 +254,7 @@ public:
}
break;
case SPECIAL:
if (++EggCount >= 15)
if (++EggCount >= EggList.size())
{
if (Creature* razor = instance->GetCreature(razorgoreGUID))
{