From 3d61826a6aa3b25b3998e766f658bf37f3ee72d2 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Sat, 28 Mar 2015 23:04:50 -0700 Subject: [PATCH] Fixes *flip --- code/modules/mob/living/emote.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/emote.dm b/code/modules/mob/living/emote.dm index 8c712e7c83c..cf808a8f258 100644 --- a/code/modules/mob/living/emote.dm +++ b/code/modules/mob/living/emote.dm @@ -86,9 +86,9 @@ m_type = 2 if ("flip") - if (!src.restrained()) - message = "[src] does a flip!" - src.SpinAnimation(5,1) + if (!src.restrained() || src.resting || src.sleeping) + src << "You do a flip!" + src.SpinAnimation(7,1) m_type = 2 if ("frown")