From 51ea729d992378254222eecf366734fc60971f37 Mon Sep 17 00:00:00 2001 From: Spacemanspark Date: Mon, 24 Aug 2015 12:57:33 -0500 Subject: [PATCH] Allows xenos to use *flip. Why wasn't this a thing before. --- code/modules/mob/living/carbon/alien/humanoid/emote.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/alien/humanoid/emote.dm b/code/modules/mob/living/carbon/alien/humanoid/emote.dm index d0f4cf86aad..c4ac448293e 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/emote.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/emote.dm @@ -114,8 +114,12 @@ Paralyse(2) message = text("[] collapses!", src) m_type = 2 + if ("flip") + m_type = 1 + message = "[src] does a flip!" + src.SpinAnimation(5,1) if("help") - src << "burp, deathgasp, choke, collapse, dance, drool, gasp, shiver, gnarl, jump, moan, nod, roar, roll, scratch,\nscretch, shake, sign-#, sit, sulk, sway, tail, twitch, whimper" + src << "burp, flip, deathgasp, choke, collapse, dance, drool, gasp, shiver, gnarl, jump, moan, nod, roar, roll, scratch,\nscretch, shake, sign-#, sit, sulk, sway, tail, twitch, whimper" else src << text("Invalid Emote: []", act) if ((message && src.stat == 0)) @@ -132,4 +136,4 @@ for(var/mob/O in hearers(src, null)) O.show_message(message, m_type) //Foreach goto(746) - return \ No newline at end of file + return