From 86a1c9927aaa1ca795d5cbb74b783d21efc591a4 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Tue, 31 Mar 2015 20:13:09 -0700 Subject: [PATCH] removes feedback msg, fixes checks --- code/modules/mob/living/emote.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/emote.dm b/code/modules/mob/living/emote.dm index cf808a8f258..d79896f82dd 100644 --- a/code/modules/mob/living/emote.dm +++ b/code/modules/mob/living/emote.dm @@ -86,8 +86,7 @@ m_type = 2 if ("flip") - if (!src.restrained() || src.resting || src.sleeping) - src << "You do a flip!" + if (!src.restrained() || !src.resting || !src.sleeping) src.SpinAnimation(7,1) m_type = 2