diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index f5d3e98cc17..08e62544215 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -421,15 +421,16 @@
msg += "*---------*
"
msg += applying_pressure
- if(pose)
- if(!findtext(pose, regex("\[.?!]$"))) // Will be zero if the last character is not a member of [.?!]
- pose = addtext(pose,".") //Makes sure all emotes end with a period.
- msg += "[T.He] [pose]"
var/show_descs = show_descriptors_to(user)
if(show_descs)
msg += "[jointext(show_descs, "
")]"
+ if(pose)
+ if(!findtext(pose, regex("\[.?!]$"))) // Will be zero if the last character is not a member of [.?!]
+ pose = addtext(pose,".") //Makes sure all emotes end with a period.
+ msg += "
[T.He] [pose]"
+
to_chat(user, jointext(msg, null))
//Helper procedure. Called by /mob/living/carbon/human/examine() and /mob/living/carbon/human/Topic() to determine HUD access to security and medical records.