diff --git a/scripts/globals/spells/slow.lua b/scripts/globals/spells/slow.lua index 5e7bfec5db8..2f3a4ed9b58 100644 --- a/scripts/globals/spells/slow.lua +++ b/scripts/globals/spells/slow.lua @@ -26,6 +26,8 @@ function onSpellCast(caster,target,spell) if(power > 300) then power = 300; end + + power = power / 1024; --Duration, including resistance. local duration = 120 * applyResistance(caster,spell,target,dMND,35,bonus); @@ -45,4 +47,4 @@ function onSpellCast(caster,target,spell) end return EFFECT_SLOW; -end; \ No newline at end of file +end;