From 59e7f9b4ae9f9d52ab8fb300e23cc5f785611f9b Mon Sep 17 00:00:00 2001 From: scrubmcnoob Date: Tue, 19 Sep 2017 20:22:23 -0400 Subject: [PATCH] FlavorText Description Fix Currently the description conflicts with our rules. This amends that. --- code/modules/mob/mob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 85028040cdc..3eea5d36372 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -684,7 +684,7 @@ var/list/slot_equipment_priority = list( \ set src in usr if(usr != src) to_chat(usr, "No.") - var/msg = input(usr,"Set the flavor text in your 'examine' verb. Can also be used for OOC notes about your character.","Flavor Text",html_decode(flavor_text)) as message|null + var/msg = input(usr,"Set the flavor text in your 'examine' verb. The flavor text should be a physical descriptor of your character at a glance.","Flavor Text",html_decode(flavor_text)) as message|null if(msg != null) msg = copytext(msg, 1, MAX_MESSAGE_LEN)