Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoonij authored Dec 10, 2024
1 parent ded00d4 commit 3862fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/species/machine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3862fbd

Please sign in to comment.