diff options
author | megamage <none@none> | 2008-12-17 23:51:19 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-12-17 23:51:19 -0600 |
commit | 49290bf0106675cee9920d4bbbf950e2b3b18d06 (patch) | |
tree | c2b577c9b60a26088f2143ff93408c2cca0346d5 /src | |
parent | b5525b0c96a9f3466b3605c45a8222b37cf642ce (diff) |
*Temp fix for bloodboil. (No distance check)
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellMgr.cpp | 5 | ||||
-rw-r--r-- | src/game/SpellMgr.h | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 3a97fdc9b89..0679d4c2261 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1909,14 +1909,15 @@ void SpellMgr::LoadSpellCustomAttr() case 44869: // Spectral Blast case 45027: // Revitalize case 45976: // Muru Portal Channel - mSpellCustomAttr[i] |= SPELL_ATTR_CU_PLAYERS_ONLY; tempSpell->MaxAffectedTargets = 1; break; case 41376: // Spite case 39992: // Needle Spine - mSpellCustomAttr[i] |= SPELL_ATTR_CU_PLAYERS_ONLY; tempSpell->MaxAffectedTargets = 3; break; + case 42005: // Bloodboil + tempSpell->MaxAffectedTargets = 6; + break; case 8122: case 8124: case 10888: case 10890: // Psychic Scream tempSpell->Attributes |= SPELL_ATTR_BREAKABLE_BY_DAMAGE; break; diff --git a/src/game/SpellMgr.h b/src/game/SpellMgr.h index 9a1fe691723..29edfcd65d5 100644 --- a/src/game/SpellMgr.h +++ b/src/game/SpellMgr.h @@ -681,7 +681,7 @@ inline bool IsProfessionSkill(uint32 skill) return IsPrimaryProfessionSkill(skill) || skill == SKILL_FISHING || skill == SKILL_COOKING || skill == SKILL_FIRST_AID; } -#define SPELL_ATTR_CU_PLAYERS_ONLY 0x00000001 +//#define SPELL_ATTR_CU_PLAYERS_ONLY 0x00000001 #define SPELL_ATTR_CU_CONE_BACK 0x00000002 #define SPELL_ATTR_CU_CONE_LINE 0x00000004 #define SPELL_ATTR_CU_SHARE_DAMAGE 0x00000008 |