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)