diff --git a/code/modules/mob/interactive.dm b/code/modules/mob/interactive.dm
index 74b86a0b79b..a6910a62eac 100644
--- a/code/modules/mob/interactive.dm
+++ b/code/modules/mob/interactive.dm
@@ -72,6 +72,7 @@
var/forceProcess = 0
var/processTime = 8
var/lastProc = 0
+ var/showexaminetext = 1 //If we show our telltale examine text
var/list/knownStrings = list()
diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index 8ba84d2891e..e62d302fd39 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -289,7 +289,9 @@
if(getorgan(/obj/item/organ/brain))
if(istype(src,/mob/living/carbon/human/interactive))
- msg += "[t_He] [t_is] appears to be some sort of sick automaton, [t_his] eyes are glazed over and [t_his] mouth is slightly agape.\n"
+ var/mob/living/carbon/human/interactive/auto = src
+ if(auto.showexaminetext)
+ msg += "[t_He] [t_is] appears to be some sort of sick automaton, [t_his] eyes are glazed over and [t_his] mouth is slightly agape.\n"
else if(!key)
msg += "[t_He] [t_is] totally catatonic. The stresses of life in deep-space must have been too much for [t_him]. Any recovery is unlikely.\n"
else if(!client)