diff options
author | QAston <none@none> | 2009-03-08 13:24:05 +0100 |
---|---|---|
committer | QAston <none@none> | 2009-03-08 13:24:05 +0100 |
commit | 786fbdec571dbc2f48ce204338cf532aabfc0d2d (patch) | |
tree | 36de3661c37e5b6c5c77e0377c45dd76daa3f56f /src/game/SpellMgr.cpp | |
parent | abdddf36ff16ab5be7080349c86217bb69a06ddf (diff) |
*Fix crash.
*Fix Guard Dog and Improved Cower -by pasdVn.
*Fix aura SPELL_AURA_OBS_MOD_ENERGY -by pasdVn.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
-rw-r--r-- | src/game/SpellMgr.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 8004890b747..a765415e71c 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1321,6 +1321,9 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2, bool // generic spells if(!spellInfo_1->SpellFamilyName) { + // hack for Incanter's Absorption + if (spellInfo_1->Id==44413 && spellInfo_2->Id==44413) + return false; if(!spellInfo_1->SpellIconID || spellInfo_1->SpellIconID == 1 || spellInfo_1->SpellIconID != spellInfo_2->SpellIconID) |