aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAqua Deus <95978183+aquadeus@users.noreply.github.com>2024-04-26 20:22:19 +0200
committerOvahlord <dreadkiller@gmx.de>2024-05-28 16:45:07 +0200
commit2ee8c63d9386a225a676ad9c39e7b9b00abc858a (patch)
treee02bd94334ebf451485ab928965b4e03f9e0f70d
parent69778a441411f073e8e1a959e8456d4178483c52 (diff)
Scripts/Spells: Fix Crusader's Might cooldown reduction effect (#29938)
(cherry picked from commit a361d3f5870a2b43f200c579314143a3bd219bab)
-rw-r--r--src/server/scripts/Spells/spell_paladin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_paladin.cpp b/src/server/scripts/Spells/spell_paladin.cpp
index 158e8d4148f..f84a7b596f8 100644
--- a/src/server/scripts/Spells/spell_paladin.cpp
+++ b/src/server/scripts/Spells/spell_paladin.cpp
@@ -419,7 +419,7 @@ class spell_pal_crusader_might : public AuraScript
void HandleEffectProc(AuraEffect* aurEff, ProcEventInfo& /*eventInfo*/)
{
- GetTarget()->GetSpellHistory()->ModifyCooldown(SPELL_PALADIN_HOLY_SHOCK, Seconds(aurEff->GetAmount()));
+ GetTarget()->GetSpellHistory()->ModifyCooldown(SPELL_PALADIN_HOLY_SHOCK, Milliseconds(aurEff->GetAmount()));
}
void Register() override