From f46db62f48727205a8569025057da65e6dcef0c0 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 13 Nov 2017 11:49:47 -0600 Subject: [PATCH] Update examine.dm --- code/modules/mob/living/carbon/human/examine.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index dd101bbb8c..c0e03116d8 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -341,6 +341,9 @@ msg += "\[Add crime\] " msg += "\[View comment log\] " msg += "\[Add comment\]\n" + if(print_flavor_text() && get_visible_name() != "Unknown")//Are we sure we know who this is? Don't show flavor text unless we can recognize them. Prevents certain metagaming with impersonation. + msg += "[print_flavor_text()]\n" + msg += "*---------*" - to_chat(user, msg) +to_chat(user, msg)