From 099c144a9eda39af7c8fd1ba91aac6a86c4d9eee Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 28 Aug 2018 11:07:07 +0200 Subject: [PATCH] IPC screen color --- code/modules/mob/living/carbon/human/species/machine.dm | 7 ++++++- 1 file changed, 6 insertions(+), 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..e4d7225a435 100644 --- a/code/modules/mob/living/carbon/human/species/machine.dm +++ b/code/modules/mob/living/carbon/human/species/machine.dm @@ -128,8 +128,13 @@ hair += i var/new_style = input(H, "Select a monitor display", "Monitor Display", head_organ.h_style) as null|anything in hair + var/new_color = input("Please select hair color.", "Monitor Color", head_organ.hair_colour) as null|color + if(H.incapacitated()) to_chat(src, "You were interrupted while changing your monitor display.") return + if(new_style) - H.change_hair(new_style) \ No newline at end of file + H.change_hair(new_style) + if(new_color) + H.change_hair_color(new_color) \ No newline at end of file