From a89703be3d0272ef2f0c40ccbbcc9044d6addf1e Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Wed, 2 Jul 2025 22:25:45 +0200 Subject: [PATCH] Update custom_spells_40.cpp --- src/naxx40Scripts/custom_spells_40.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/naxx40Scripts/custom_spells_40.cpp b/src/naxx40Scripts/custom_spells_40.cpp index 2cc6a93..78928aa 100644 --- a/src/naxx40Scripts/custom_spells_40.cpp +++ b/src/naxx40Scripts/custom_spells_40.cpp @@ -272,7 +272,11 @@ class spell_sapphiron_frost_aura_40 : public AuraScript return; } PreventDefaultAction(); - int32 modifiedFrostAuraDamage = 599; + // 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); caster->CastCustomSpell(SPELL_FROST_AURA, values, caster, TRIGGERED_NONE, nullptr, nullptr, GetCasterGUID());