diff --git a/sql/mangos_spell_check.sql b/sql/mangos_spell_check.sql index e9729c0e0..23d0134d4 100644 --- a/sql/mangos_spell_check.sql +++ b/sql/mangos_spell_check.sql @@ -111,9 +111,6 @@ INSERT INTO spell_check (spellid,SpellFamilyName,SpellFamilyMaskA,SpellFamilyMas (28006, 0, -1, -1, -1, -1, -1, 3, -1,-1,'Arcane Cloaking', 'Spell::EffectDummy'), (28884, 0, -1, -1, -1, -1, -1, 2, -1,-1,'Meteor', 'Spell::EffectSchoolDMG'), (29294,-1, -1, -1, -1, -1, -1, -1, -1,-1,'Naxxramas Entry Flag Effect DND', 'Spell::EffectDummy'), -(28730, 0, -1, -1, -1, -1, -1, 3, -1,-1,'Arcane Torrent', 'Spell::EffectDummy'), -(28733,-1, -1, -1, -1, -1, -1, 30, -1, 0,'Arcane Torrent', 'Spell::EffectDummy'), -(28734,-1, -1, -1, -1, -1, -1, -1, 4,-1,'Mana Tap', 'Spell::EffectDummy'), (29200, 0, -1, -1, -1, -1, -1, 3, -1,-1,'Purify Helboar Meat', 'Spell::EffectDummy'), (29277,-1, -1, -1, -1, -1, -1, -1, -1,-1,'Summon Purified Helboar Meat', 'Spell::EffectDummy'), (29278,-1, -1, -1, -1, -1, -1, -1, -1,-1,'Summon Toxic Helboar Meat', 'Spell::EffectDummy'), diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 29eeec15d..506154833 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -903,17 +903,6 @@ void Spell::EffectDummy(uint32 i) m_caster->CastSpell(unitTarget, 29294, true); return; } - case 28730: // Arcane Torrent (Mana) - { - Aura * dummy = m_caster->GetDummyAura(28734); - if (dummy) - { - int32 bp = damage * dummy->GetStackAmount(); - m_caster->CastCustomSpell(m_caster, 28733, &bp, NULL, NULL, true); - m_caster->RemoveAurasDueToSpell(28734); - } - return; - } case 29200: // Purify Helboar Meat { if( m_caster->GetTypeId() != TYPEID_PLAYER ) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index e9ee7e60e..eddc36fc9 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8179" + #define REVISION_NR "8180" #endif // __REVISION_NR_H__