mirror of
https://github.com/mangosfour/server.git
synced 2025-12-22 13:37:08 +00:00
Rename some UnitFlags
Signed-off-by: DiSlord <dislord@nomail.com>
This commit is contained in:
parent
d6c58df0e6
commit
7cd3fa8680
4 changed files with 26 additions and 17 deletions
|
|
@ -3104,9 +3104,9 @@ void Aura::HandleModPossessPet(bool apply, bool Real)
|
|||
return;
|
||||
|
||||
if(apply)
|
||||
pet->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNKNOWN5);
|
||||
pet->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNK_24);
|
||||
else
|
||||
pet->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNKNOWN5);
|
||||
pet->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNK_24);
|
||||
|
||||
((Player*)caster)->SetFarSight(apply ? pet->GetGUID() : NULL);
|
||||
((Player*)caster)->SetCharm(apply ? pet : NULL);
|
||||
|
|
@ -3267,7 +3267,7 @@ void Aura::HandleFeignDeath(bool apply, bool Real)
|
|||
m_target->SendMessageToSet(&data,true);
|
||||
*/
|
||||
// blizz like 2.0.x
|
||||
m_target->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNKNOWN6);
|
||||
m_target->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNK_29);
|
||||
// blizz like 2.0.x
|
||||
m_target->SetFlag(UNIT_FIELD_FLAGS_2, UNIT_FLAG2_FEIGN_DEATH);
|
||||
// blizz like 2.0.x
|
||||
|
|
@ -3291,7 +3291,7 @@ void Aura::HandleFeignDeath(bool apply, bool Real)
|
|||
m_target->SendMessageToSet(&data,true);
|
||||
*/
|
||||
// blizz like 2.0.x
|
||||
m_target->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNKNOWN6);
|
||||
m_target->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNK_29);
|
||||
// blizz like 2.0.x
|
||||
m_target->RemoveFlag(UNIT_FIELD_FLAGS_2, UNIT_FLAG2_FEIGN_DEATH);
|
||||
// blizz like 2.0.x
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue