From c770a90ccbb22b196161f45e17ee29d6d24f8f8f Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 11 Oct 2020 16:53:57 +0100 Subject: [PATCH] Revert "cleanup" This reverts commit 1fc7d9a21e73b5c9350ea0b7a11f8207948775b0. --- code/modules/mob/living/carbon/human/species.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index d662acd967..5fea6e6704 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -591,7 +591,9 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) else var/left_state = DEFAULT_LEFT_EYE_STATE var/right_state = DEFAULT_RIGHT_EYE_STATE + message_admins("okay so our eye type is [eye_type] and we can index it to know [GLOB.eye_types[eye_type]]") if(eye_type in GLOB.eye_types) + message_admins("to know that it's in!") left_state = eye_type + "_left_eye" right_state = eye_type + "_right_eye" var/mutable_appearance/left_eye = mutable_appearance('icons/mob/eyes.dmi', left_state, -BODY_LAYER)