diff --git a/sql/scriptdev2/spell.sql b/sql/scriptdev2/spell.sql index 1a44658934b..9acf34e0481 100644 --- a/sql/scriptdev2/spell.sql +++ b/sql/scriptdev2/spell.sql @@ -1230,7 +1230,6 @@ INSERT INTO spell_scripts(Id, ScriptName) VALUES (32996,'spell_shadow_word_death'), (48157,'spell_shadow_word_death'), (48158,'spell_shadow_word_death'), -(55682,'spell_glyph_of_shadow_word_death'), (589,'spell_shadow_affinity_dots'), (594,'spell_shadow_affinity_dots'), (970,'spell_shadow_affinity_dots'), diff --git a/src/game/Spells/Scripts/Scripting/ClassScripts/Priest.cpp b/src/game/Spells/Scripts/Scripting/ClassScripts/Priest.cpp index 01569e127cb..2372c827458 100644 --- a/src/game/Spells/Scripts/Scripting/ClassScripts/Priest.cpp +++ b/src/game/Spells/Scripts/Scripting/ClassScripts/Priest.cpp @@ -305,21 +305,6 @@ struct GlyphOfLightwell : public AuraScript } }; -struct GlyphOfShadowWordDeath : public AuraScript -{ - void OnApply(Aura* aura, bool apply) const override - { - if (aura->GetEffIndex() == EFFECT_INDEX_0) - aura->GetTarget()->RegisterScriptedLocationAura(aura, SCRIPT_LOCATION_SPELL_DAMAGE_DONE, apply); - } - - void OnDamageCalculate(Aura* aura, Unit* /*attacker*/, Unit* victim, int32& advertisedBenefit, float& totalMod) const override - { - if (victim->GetHealthPercent() <= 35.f) - totalMod *= (float(100 + aura->GetModifier()->m_amount) / 100); - } -}; - struct ShadowAffinityDots : public AuraScript { void OnApply(Aura* aura, bool apply) const override @@ -474,7 +459,6 @@ void LoadPriestScripts() RegisterSpellScript("spell_lightwell_renew"); RegisterSpellScript("spell_lightwell_relay"); RegisterSpellScript("spell_glyph_of_lightwell"); - RegisterSpellScript("spell_glyph_of_shadow_word_death"); RegisterSpellScript("spell_shadow_affinity_dots"); RegisterSpellScript("spell_guardian_spirit_priest"); RegisterSpellScript("spell_renewed_hope");