diff options
author | QAston <none@none> | 2009-02-02 17:01:56 +0100 |
---|---|---|
committer | QAston <none@none> | 2009-02-02 17:01:56 +0100 |
commit | c385b529976146a29916d1b1cc4f63a2d9ba258e (patch) | |
tree | 28da5fb101ab1ba52b343e6b28d29141ec1af437 /src/game/SpellHandler.cpp | |
parent | bb39eba6c7f28fc0e1ded0af29fe63e6c5a863ef (diff) |
*Fix a typo in prev commit
*Use flag96 instead of unit64+unit32.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellHandler.cpp')
-rw-r--r-- | src/game/SpellHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellHandler.cpp b/src/game/SpellHandler.cpp index 790f0a60136..4186336fe18 100644 --- a/src/game/SpellHandler.cpp +++ b/src/game/SpellHandler.cpp @@ -329,7 +329,7 @@ void WorldSession::HandleCancelAuraOpcode( WorldPacket& recvPacket) return; // lifebloom must delete final heal effect - if (spellInfo->SpellFamilyName == SPELLFAMILY_DRUID && (spellInfo->SpellFamilyFlags & 0x1000000000LL) ) + if (spellInfo->SpellFamilyName == SPELLFAMILY_DRUID && (spellInfo->SpellFamilyFlags[1] & 0x10) ) { Unit::AuraMap::iterator iter; while((iter = _player->m_Auras.find(Unit::spellEffectPair(spellId, 1))) != _player->m_Auras.end()) |