Added a Spell for KilJaeden (need it later)

--HG--
branch : trunk
This commit is contained in:
Andy@conmuc-l03
2009-04-21 20:39:06 +02:00
parent 2ecf455090
commit 784d388069

View File

@@ -5044,6 +5044,15 @@ void Aura::HandleAuraModPacify(bool apply, bool Real)
m_target->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_PACIFIED);
else
m_target->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_PACIFIED);
if(m_spellProto->Id == 45839){
if(apply){
m_target->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NON_ATTACKABLE);
}else{
m_target->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NON_ATTACKABLE);
}
}
}
void Aura::HandleAuraModPacifyAndSilence(bool apply, bool Real)