From 51de1cd636959f0cd342359df94d70a279bd8ada Mon Sep 17 00:00:00 2001 From: BroodWyrm Date: Tue, 23 Jun 2009 20:12:30 +0200 Subject: *Fix Item 30639 --HG-- branch : trunk --- src/game/SpellAuras.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src') diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 5e8241b486a..f8f7496737f 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1904,6 +1904,22 @@ void Aura::HandleAuraDummy(bool apply, bool Real) if(caster) caster->CastSpell(caster,13138,true,NULL,this); return; + case 37096: // Blood Elf Disguise + if(caster) + { + switch(caster->getGender()) + { + case GENDER_FEMALE: + caster->CastSpell(m_target,37095,true,NULL,this); + break; + case GENDER_MALE: + caster->CastSpell(m_target,37093,true,NULL,this); + break; + default: + break; + } + } + return; case 39850: // Rocket Blast if(roll_chance_i(20)) // backfire stun m_target->CastSpell(m_target, 51581, true, NULL, this); -- cgit v1.2.3