This commit is contained in:
Selis
2025-02-14 17:12:08 +01:00
committed by GitHub
parent 05b3e7cfa4
commit 9bf5b930f6
3 changed files with 6 additions and 6 deletions
@@ -310,7 +310,7 @@
var/datum/sprite_accessory/S = hair_styles_list[hairstyle]
if(!(species in S.species_allowed) && (!custom_base || !(custom_base in S.species_allowed))) //VOREStation Edit - Custom species base species allowance
continue
if((!S.ckeys_allowed) || (user?.ckey in S.ckeys_allowed)) //VOREStation Edit, allows ckey locked hairstyles.
if((!S.ckeys_allowed) || (user.ckey in S.ckeys_allowed)) //VOREStation Edit, allows ckey locked hairstyles.
valid_hairstyles[S.name] = hairstyle //VOREStation Edit, allows ckey locked hairstyles.
//valid_hairstyles[hairstyle] = hair_styles_list[hairstyle] //VOREStation Edit. Replaced by above.