From e7c93ebc94710fb89a4467359c8a5dc749ab413b Mon Sep 17 00:00:00 2001 From: Layne <31356648+MisterLayne@users.noreply.github.com> Date: Fri, 29 Jun 2018 15:55:13 -0400 Subject: [PATCH] Only slimes may squish. (#5369) * Clandestine (Original Commit) * Revert "Clandestine (Original Commit)" This reverts commit cdb1abb47b3720e9160a4942a06f1b9036db2c27. * Squish on my slime * Squish on my slime --- code/modules/mob/living/carbon/human/emote.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 09b7aadc70..72c1f1ed3b 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -1,6 +1,6 @@ /mob/living/carbon/human/emote(var/act,var/m_type=1,var/message = null) var/param = null - + var/datum/gender/T = gender_datums[get_visible_gender()] if (findtext(act, "-", 1, null)) @@ -79,7 +79,7 @@ //Promethean-only emotes if("squish") - if(!species.bump_flag == SLIME) //That should do, yaya. + if(species.bump_flag != SLIME) //This should definitely do it. src << "You are not a slime thing!" return @@ -738,7 +738,7 @@ set name = "Set Pose" set desc = "Sets a description which will be shown when someone examines you." set category = "IC" - + var/datum/gender/T = gender_datums[get_visible_gender()] pose = sanitize(input(usr, "This is [src]. [T.he]...", "Pose", null) as text)