I can feel the hugs already.

This commit is contained in:
Graham Lloyd
2014-03-30 00:49:23 -04:00
parent dc773f9e49
commit f176b2dea9

View File

@@ -195,17 +195,22 @@
if (istype(src,/mob/living/carbon/human) && src:w_uniform) if (istype(src,/mob/living/carbon/human) && src:w_uniform)
var/mob/living/carbon/human/H = src var/mob/living/carbon/human/H = src
H.w_uniform.add_fingerprint(M) H.w_uniform.add_fingerprint(M)
if(lying)
src.sleeping = max(0,src.sleeping-5) src.sleeping = max(0,src.sleeping-5)
if(src.sleeping == 0) if(src.sleeping == 0)
src.resting = 0 src.resting = 0
M.visible_message("<span class='notice'>[M] shakes [src] trying to wake [t_him] up!", \
"<span class='notice'>You shake [src] trying to wake [t_him] up!")
else
M.visible_message("<span class='notice'>[M] hugs [src] to make [t_him] feel better!</span>", \
"<span class='notice'>You hug [src] to make [t_him] feel better!</span>")
AdjustParalysis(-3) AdjustParalysis(-3)
AdjustStunned(-3) AdjustStunned(-3)
AdjustWeakened(-3) AdjustWeakened(-3)
playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1)
M.visible_message( \
"\blue [M] shakes [src] trying to wake [t_him] up!", \
"\blue You shake [src] trying to wake [t_him] up!", \
)
/mob/living/carbon/proc/eyecheck() /mob/living/carbon/proc/eyecheck()
return 0 return 0