From 02082655e8bc49da4287e481df123933250497e7 Mon Sep 17 00:00:00 2001 From: Markolie Date: Fri, 14 Aug 2015 21:32:10 +0200 Subject: [PATCH] Parenthesis --- code/modules/mob/living/carbon/human/emote.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 4b50ba8c2e9..25be8a1152b 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -841,11 +841,11 @@ set desc = "Sets a description which will be shown when someone examines you." set category = "IC" - pose = sanitize(copytext(input(usr, "This is [src]. \He is...", "Pose", null) as text, 1, MAX_MESSAGE_LEN)) + pose = sanitize(copytext(input(usr, "This is [src]. \He is...", "Pose", null) as text, 1, MAX_MESSAGE_LEN)) /mob/living/carbon/human/verb/set_flavor() set name = "Set Flavour Text" set desc = "Sets an extended description of your character's features." set category = "IC" - flavor_text = TextPreview((input(usr, "Please enter your new flavour text.", "Flavour text", null) as text, 1)) + flavor_text = TextPreview(input(usr, "Please enter your new flavour text.", "Flavour text", null) as text, 1)