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)