Adds span classes to repulse spell.

This commit is contained in:
Boggart
2015-01-14 02:02:17 -07:00
parent cead65d0a0
commit a54b57f629
+2 -2
View File
@@ -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 << "<span class='userdanger'>You're slammed into the floor by a mystical force!</span>"
else
if(istype(AM, /mob/living))
var/mob/living/M = AM
M.Weaken(2)
M << "You're thrown back by a mystical force!"
M << "<span class='userdanger'>You're thrown back by a mystical force!</span>"
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.