From 03321fa04d8f86139385fba98fa42d3e81d0ee9d Mon Sep 17 00:00:00 2001 From: Chinsky Date: Sat, 19 Jan 2013 12:42:06 +0400 Subject: [PATCH] Used BYOND macro instead. --- code/modules/mob/living/carbon/human/emote.dm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 55b068cd75d..d49e36b3f3a 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -595,11 +595,4 @@ set desc = "Sets description which will be shown when someone examines you" set category = "IC" - var/t_he = "It" - switch(gender) - if(MALE) - t_he = "He" - if(FEMALE) - t_he = "She" - var/n_pose = copytext(sanitize(input(usr, "This is [src]. [t_he] is...", "Pose", null) as text), 1, MAX_MESSAGE_LEN) - pose = n_pose; \ No newline at end of file + pose = copytext(sanitize(input(usr, "This is [src]. \He is...", "Pose", null) as text), 1, MAX_MESSAGE_LEN)