aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBroodWyrm <none@none>2009-06-23 20:32:33 +0200
committerBroodWyrm <none@none>2009-06-23 20:32:33 +0200
commitd6a3770597f63dadc094a16ef33d27533876c3c6 (patch)
tree78bd9e7a35da66fa81ef831588b063a7e6eee37a /src
parent6a6add72f570b9af63236985dfe7dd4c20d905aa (diff)
*Fix Item 30639
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/SpellAuras.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp
index 1bed0715ce5..3a73990426a 100644
--- a/src/game/SpellAuras.cpp
+++ b/src/game/SpellAuras.cpp
@@ -2435,6 +2435,24 @@ void AuraEffect::HandleAuraDummy(bool apply, bool Real, bool changeAmount)
}
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 55198: // Tidal Force
{
m_target->CastSpell(m_target,55166,true,NULL,this);