aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuras.cpp
diff options
context:
space:
mode:
authorQAston <none@none>2009-08-05 17:00:01 +0200
committerQAston <none@none>2009-08-05 17:00:01 +0200
commitd7df4cfa099286310639915d70aea0b9cd7183a2 (patch)
tree3ba6cbabd1325bc34005502373a9aef57d8e5a70 /src/game/SpellAuras.cpp
parent037fa6eae1e88c930ccb123668e552f191e87559 (diff)
*Fix Coyote Spirit Despawn Aura (52172) and Blood Parrot Despawn Aura (60244) - inspired by Disassembler's patch.
--HG-- branch : trunk
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r--src/game/SpellAuras.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp
index 546d6492300..ef260369b18 100644
--- a/src/game/SpellAuras.cpp
+++ b/src/game/SpellAuras.cpp
@@ -2783,7 +2783,11 @@ void AuraEffect::HandleAuraDummy(bool apply, bool Real, bool changeAmount)
return;
case 46308: // Burning Winds casted only at creatures at spawn
m_target->CastSpell(m_target,47287,true,NULL,this);
- return;
+ return;
+ case 52173: // Coyote Spirit Despawn Aura
+ case 60244: // Blood Parrot Despawn Aura
+ m_target->CastSpell((Unit*)NULL, GetAmount(), true, NULL, this);
+ return;
}
break;
case SPELLFAMILY_WARLOCK: