diff options
author | Shauren <shauren.trinity@gmail.com> | 2011-05-20 22:20:11 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2011-05-20 22:20:11 +0200 |
commit | 0ab5cdef2e1b700c60fbe3c807206c3369b7fc1a (patch) | |
tree | 6a7ba51e49a34e24ff33b25f0b1fde622b717289 /src/server/game/Spells/SpellMgr.cpp | |
parent | 3d620db0c18135fc5d750f591f0e779231ee17aa (diff) |
Scripts/Icecrown Citadel:
* Added Valithria Dreamwalker script
* Fixed Mutated Abomination on heroic mode at Professor Putricide
* Fixed saving heroic attempts to db
Diffstat (limited to 'src/server/game/Spells/SpellMgr.cpp')
-rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 8d98ae1a5a9..5791d311281 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -4099,6 +4099,24 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->AreaGroupId = 0; ++count; break; + case 70588: // Suppression + case 70602: // Corruption + spellInfo->AttributesEx |= SPELL_ATTR1_STACK_FOR_DIFF_CASTERS; + ++count; + break; + case 70715: // Column of Frost (visual marker) + spellInfo->DurationIndex = 32; // 6 seconds (missing) + ++count; + break; + case 71085: // Mana Void (periodic aura) + spellInfo->DurationIndex = 9; // 30 seconds (missing) + ++count; + break; + case 70936: // Summon Suppressor + spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_TARGET_ANY; + spellInfo->EffectImplicitTargetB[0] = 0; + ++count; + break; case 71357: // Order Whelp spellInfo->EffectRadiusIndex[0] = 22; ++count; |