aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellMgr.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2008-11-03 13:43:36 -0600
committermegamage <none@none>2008-11-03 13:43:36 -0600
commitda5786249f9117b18a71ccca9e677e275ddd29ad (patch)
treefad575d5a84e063e8307040246baa6c18c4334b8 /src/game/SpellMgr.cpp
parent09c72569c0f307926350b605ac33c54d4b4017d7 (diff)
[svn] Fix SPELL_ATTR_UNAFFECTED_BY_INVULNERABILITY spells, patch provided by QAston.
Fix priest's fear. Is breakable now. --HG-- branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
-rw-r--r--src/game/SpellMgr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp
index a7f73ac7e45..532eb839af1 100644
--- a/src/game/SpellMgr.cpp
+++ b/src/game/SpellMgr.cpp
@@ -2037,13 +2037,13 @@ void SpellMgr::LoadSpellExtraAttr()
// Psychic Scream
SpellEntry *tempSpell;
if(tempSpell = (SpellEntry*)GetSpellStore()->LookupEntry(8122))
- tempSpell->AttributesEx |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
+ tempSpell->Attributes |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
if(tempSpell = (SpellEntry*)GetSpellStore()->LookupEntry(8124))
- tempSpell->AttributesEx |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
+ tempSpell->Attributes |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
if(tempSpell = (SpellEntry*)GetSpellStore()->LookupEntry(10888))
- tempSpell->AttributesEx |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
+ tempSpell->Attributes |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
if(tempSpell = (SpellEntry*)GetSpellStore()->LookupEntry(10890))
- tempSpell->AttributesEx |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
+ tempSpell->Attributes |= SPELL_ATTR_BREAKABLE_BY_DAMAGE;
}
void SpellMgr::LoadSpellLinked()