From 3862fbd0b974d03a54b41e5691fd57be0d434afc Mon Sep 17 00:00:00 2001 From: Antoonij <42318445+Antoonij@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:21:27 +0100 Subject: [PATCH] error fix --- 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 61cbee3f279..8dc62ed61cc 100644 --- a/code/modules/mob/living/carbon/human/species/machine.dm +++ b/code/modules/mob/living/carbon/human/species/machine.dm @@ -137,7 +137,7 @@ for(var/hairstyle in GLOB.hair_styles_public_list) var/datum/sprite_accessory/style = GLOB.hair_styles_public_list[hairstyle] - if(robohead.is_monitor && ((style.models_allowed && (robohead.company in S.models_allowed)) || !style.models_allowed)) + if(robohead.is_monitor && ((style.models_allowed && (robohead.company in style.models_allowed)) || !style.models_allowed)) LAZYADD(valid_hairstyles, hairstyle) else