fixed build

This commit is contained in:
Ovah
2021-03-09 17:06:34 +01:00
committed by GitHub
parent e77100c923
commit 0aa3a0b0b9

View File

@@ -37,7 +37,7 @@ WorldPackets::Combat::SAttackStop::SAttackStop(Unit const* attacker, Unit const*
if (victim)
{
Victim = victim->GetGUID();
NowDead = !victim->isAlive(); // using isAlive instead of isDead to catch JUST_DIED death states as well
NowDead = !victim->IsAlive(); // using isAlive instead of isDead to catch JUST_DIED death states as well
}
}