From f0b3e0decf6cceec9642f254ef3fde0235a1ba17 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Wed, 2 Jul 2025 22:38:16 +0200 Subject: [PATCH] Update custom_spells_40.cpp --- src/naxx40Scripts/custom_spells_40.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/naxx40Scripts/custom_spells_40.cpp b/src/naxx40Scripts/custom_spells_40.cpp index 78928aa..b4e0772 100644 --- a/src/naxx40Scripts/custom_spells_40.cpp +++ b/src/naxx40Scripts/custom_spells_40.cpp @@ -272,13 +272,9 @@ class spell_sapphiron_frost_aura_40 : public AuraScript return; } PreventDefaultAction(); - // int32 modifiedFrostAuraDamage = 599; - int32 bp0 = 599; // instant damage - int32 bp1 = 599; // periodic damage - values.AddSpellMod(SPELLVALUE_BASE_POINT0, bp0); - values.AddSpellMod(SPELLVALUE_BASE_POINT1, bp1); CustomSpellValues values; - values.AddSpellMod(SPELLVALUE_BASE_POINT0, modifiedFrostAuraDamage); + int32 bp0 = 599; + values.AddSpellMod(SPELLVALUE_BASE_POINT0, bp0); caster->CastCustomSpell(SPELL_FROST_AURA, values, caster, TRIGGERED_NONE, nullptr, nullptr, GetCasterGUID()); }