aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellEffects.cpp
diff options
context:
space:
mode:
authorQAston <none@none>2009-06-14 17:56:22 +0200
committerQAston <none@none>2009-06-14 17:56:22 +0200
commite7910ec9d241749822278574315c02a531cee3fd (patch)
treec926e52db309ddb414d3c756b5e82bd0c9664697 /src/game/SpellEffects.cpp
parent4e005c307028bebd4a083d6ad5c96a2360439947 (diff)
*Correct interpretation of procflags and update spell_proc_event due to that (some of mangos entries may be incompatibile due to that change)
*Fix siphon life. *Fix Rapture. --HG-- branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r--src/game/SpellEffects.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index 35e52f2208c..fc6f0625da3 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -1908,6 +1908,12 @@ void Spell::EffectDummy(uint32 i)
unitTarget->CastSpell(m_caster, damage, true);
return;
}
+ // Hungering Cold
+ else if (m_spellInfo->SpellFamilyFlags[1] & 0x1000)
+ {
+ unitTarget->CastSpell(m_caster, 51209, true);
+ return;
+ }
break;
}