diff options
| author | Machiavelli <none@none> | 2010-12-27 09:19:06 +0100 |
|---|---|---|
| committer | Machiavelli <none@none> | 2010-12-27 09:19:06 +0100 |
| commit | 4a169412b7166db18ea423aac5ccb7a18ae6e95d (patch) | |
| tree | dae38dd16dd06183d8bc010de0a04cc1a2614e0a | |
| parent | f0d884ee20b48f0dd85820b57561c40e2bc4e480 (diff) | |
Core/Spells: Implement 65594 (Cancel Stone Grip - Used in Kologarn encounter) spell
--HG--
branch : trunk
| -rwxr-xr-x | src/server/game/Spells/SpellEffects.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index 7547180168c..1470e80f8cf 100755 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -5079,6 +5079,12 @@ void Spell::EffectScriptEffect(SpellEffIndex effIndex) } return; } + case 65594: // Cancel Stone Grip + { + uint32 spellToRemove = unitTarget->GetMap()->GetDifficulty() == RAID_DIFFICULTY_10MAN_NORMAL ? 62166 : 63981; + unitTarget->RemoveAurasDueToSpell(spellToRemove); + return; + } case 60123: // Lightwell { if (m_caster->GetTypeId() != TYPEID_UNIT || !m_caster->ToCreature()->isSummon()) |
