From d328af331ff8fcdaf801870e01d7d76367df40f4 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Tue, 11 Apr 2017 20:05:35 -0400 Subject: [PATCH] Switched Stun to Slowed --- code/datums/spells/lightning.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/spells/lightning.dm b/code/datums/spells/lightning.dm index 9c8453027eb..fcaba6b43ce 100644 --- a/code/datums/spells/lightning.dm +++ b/code/datums/spells/lightning.dm @@ -92,7 +92,7 @@ obj/effect/proc_holder/spell/targeted/lightning/proc/Reset(mob/user = usr) current.AdjustJitter(1000) //High numbers for violent convulsions current.do_jitter_animation(current.jitteriness) current.AdjustStuttering(2) - current.Stun(2) + current.Slowed(3) spawn(20) current.AdjustJitter(-1000, bound_lower = 10) //Still jittery, but vastly less playsound(get_turf(current), 'sound/magic/LightningShock.ogg', 50, 1, -1) @@ -103,7 +103,7 @@ obj/effect/proc_holder/spell/targeted/lightning/proc/Reset(mob/user = usr) current.AdjustJitter(1000) //High numbers for violent convulsions current.do_jitter_animation(current.jitteriness) current.AdjustStuttering(2) - current.Stun(2) + current.Slowed(3) spawn(20) current.AdjustJitter(-1000, bound_lower = 10) //Still jittery, but vastly less playsound(get_turf(current), 'sound/magic/LightningShock.ogg', 50, 1, -1)