From 556cf4f5e66594e96b418e79dbb39acb79bfc630 Mon Sep 17 00:00:00 2001 From: variableundefined <40092670+variableundefined@users.noreply.github.com> Date: Thu, 30 Aug 2018 19:06:29 +0800 Subject: [PATCH] Fix monitor runtime --- code/modules/mob/living/carbon/human/species/machine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/machine.dm b/code/modules/mob/living/carbon/human/species/machine.dm index fa3e4e321a9..592eb5211d7 100644 --- a/code/modules/mob/living/carbon/human/species/machine.dm +++ b/code/modules/mob/living/carbon/human/species/machine.dm @@ -129,7 +129,7 @@ var/new_style = input(H, "Select a monitor display", "Monitor Display", head_organ.h_style) as null|anything in hair if(H.incapacitated()) - to_chat(src, "You were interrupted while changing your monitor display.") + to_chat(H, "You were interrupted while changing your monitor display.") return if(new_style) H.change_hair(new_style) \ No newline at end of file