aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBroodWyrm <none@none>2009-06-23 20:12:30 +0200
committerBroodWyrm <none@none>2009-06-23 20:12:30 +0200
commit51de1cd636959f0cd342359df94d70a279bd8ada (patch)
treee4de3327337b5607333c20dea4a53ebdb4bcdbfa
parent97e4a59a75f8f6918c548552b4f1b17c477c7762 (diff)
*Fix Item 30639
--HG-- branch : trunk
-rw-r--r--src/game/SpellAuras.cpp16
1 files changed, 16 insertions, 0 deletions
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);