fix(Core/Creature): group members should also follow the movement (#22690)

This commit is contained in:
天鹭 2025-09-12 08:00:46 +08:00 committed by GitHub
parent 5291f30422
commit 0a3f5544b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3913,5 +3913,8 @@ bool Creature::IsUpdateNeeded()
if (HasUnitState(UNIT_STATE_EVADE))
return true;
if (m_formation && m_formation->GetLeader() != this)
return true;
return false;
}