From ba83728e4735c404e1d205c255eb632aa097a7ea Mon Sep 17 00:00:00 2001 From: sick-trigger Date: Mon, 9 Jun 2014 16:41:42 +1000 Subject: [PATCH] Scientist records photo fix Fixes #5156 --- code/datums/datacore.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index 019739030b..c51528eb6e 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -215,7 +215,7 @@ proc/get_id_photo(var/mob/living/carbon/human/H) clothes_s.Blend(new /icon('icons/mob/feet.dmi', "brown"), ICON_UNDERLAY) clothes_s.Blend(new /icon('icons/mob/suit.dmi', "labcoat_open"), ICON_OVERLAY) if("Scientist") - clothes_s = new /icon('icons/mob/uniform.dmi', "rndswhite_s") + clothes_s = new /icon('icons/mob/uniform.dmi', "sciencewhite_s") clothes_s.Blend(new /icon('icons/mob/feet.dmi', "white"), ICON_UNDERLAY) clothes_s.Blend(new /icon('icons/mob/suit.dmi', "labcoat_tox_open"), ICON_OVERLAY) if("Chemist")