aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAqua Deus <95978183+aquadeus@users.noreply.github.com>2024-09-02 14:37:31 +0200
committerGitHub <noreply@github.com>2024-09-02 14:37:31 +0200
commit76864337eeaf9cfd4a449641311e53103e588e38 (patch)
tree7d1e424437bedf8927633fa2aa4a8cffb410cd8f
parentb1d8061a0f848241fe70ab0d718e829836cb5601 (diff)
Scripts/Spells: Fix Rain of Fire damage (#30185)
-rw-r--r--src/server/scripts/Spells/spell_warlock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Spells/spell_warlock.cpp b/src/server/scripts/Spells/spell_warlock.cpp
index 931ed38128a..d745cf819a2 100644
--- a/src/server/scripts/Spells/spell_warlock.cpp
+++ b/src/server/scripts/Spells/spell_warlock.cpp
@@ -1061,7 +1061,7 @@ class spell_warl_unstable_affliction : public AuraScript
};
// 5740 - Rain of Fire
-/// Updated 7.1.5
+/// Updated 11.0.2
class spell_warl_rain_of_fire : public AuraScript
{
void HandleDummyTick(AuraEffect const* /*aurEff*/)
@@ -1083,7 +1083,7 @@ class spell_warl_rain_of_fire : public AuraScript
void Register() override
{
- OnEffectPeriodic += AuraEffectPeriodicFn(spell_warl_rain_of_fire::HandleDummyTick, EFFECT_3, SPELL_AURA_PERIODIC_DUMMY);
+ OnEffectPeriodic += AuraEffectPeriodicFn(spell_warl_rain_of_fire::HandleDummyTick, EFFECT_2, SPELL_AURA_PERIODIC_DUMMY);
}
};