Adds a var to disable the automaton examine text

This commit is contained in:
Shadowlight213
2016-07-03 11:06:31 -07:00
parent 5fc71d92b1
commit efc1d8707d
2 changed files with 4 additions and 1 deletions
+1
View File
@@ -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()
@@ -289,7 +289,9 @@
if(getorgan(/obj/item/organ/brain))
if(istype(src,/mob/living/carbon/human/interactive))
msg += "<span class='deadsay'>[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.</span>\n"
var/mob/living/carbon/human/interactive/auto = src
if(auto.showexaminetext)
msg += "<span class='deadsay'>[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.</span>\n"
else if(!key)
msg += "<span class='deadsay'>[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.</span>\n"
else if(!client)