During the Northrend Beasts if your group kills one jorungar. Maybe a second later it’s broadcasted that you lose and the mobs despawn.
I believe it’s located within
void JustDied(Unit* /*killer*/)
{
if (instanceScript)
{
if (Creature* otherWorm = Unit::GetCreature(*me, instanceScript->GetData64(otherWormEntry)))
{
if (!otherWorm->isAlive())
{
if (!m_uiNextBossCheck)
instanceScript->SetData(TYPE_NORTHREND_BEASTS, SNAKES_DONE);
me->DespawnOrUnsummon();
otherWorm->DespawnOrUnsummon();
}
else
instanceScript->SetData(TYPE_NORTHREND_BEASTS, SNAKES_SPECIAL);
}
}
}
void JustReachedHome()
{
if (instanceScript && instanceScript->GetData(TYPE_NORTHREND_BEASTS) != FAIL)
instanceScript->SetData(TYPE_NORTHREND_BEASTS, FAIL);
me->DespawnOrUnsummon();
}
Is there any help for this?