From a54b57f629df7cc98c1992be4e33fc221154dd2a Mon Sep 17 00:00:00 2001 From: Boggart Date: Wed, 14 Jan 2015 02:02:17 -0700 Subject: [PATCH] Adds span classes to repulse spell. --- code/datums/spells/wizard.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/spells/wizard.dm b/code/datums/spells/wizard.dm index d92e44808b5..a0b201d9dd7 100644 --- a/code/datums/spells/wizard.dm +++ b/code/datums/spells/wizard.dm @@ -295,10 +295,10 @@ var/mob/living/M = AM M.Weaken(5) M.adjustBruteLoss(5) - M << "You're slammed into the floor by a mystical force!" + M << "You're slammed into the floor by a mystical force!" else if(istype(AM, /mob/living)) var/mob/living/M = AM M.Weaken(2) - M << "You're thrown back by a mystical force!" + M << "You're thrown back by a mystical force!" spawn(0) AM.throw_at(throwtarget, ((Clamp((maxthrow - (Clamp(distfromcaster - 2, 0, distfromcaster))), 3, maxthrow))), 1)//So stuff gets tossed around at the same time. \ No newline at end of file