Merge pull request #3585 from Segrain/master

Hairfix.
This commit is contained in:
Zuhayr
2013-08-24 22:50:36 -07:00
2 changed files with 5 additions and 5 deletions

View File

@@ -822,7 +822,7 @@ datum/preferences
var/list/valid_hairstyles = list()
for(var/hairstyle in hair_styles_list)
var/datum/sprite_accessory/S = hair_styles_list[hairstyle]
if(gender != S.gender)
if(gender != S.gender && S.gender != NEUTER)
continue
if( !(species in S.species_allowed))
continue
@@ -838,7 +838,7 @@ datum/preferences
var/list/valid_facialhairstyles = list()
for(var/facialhairstyle in facial_hair_styles_list)
var/datum/sprite_accessory/S = facial_hair_styles_list[facialhairstyle]
if(gender != S.gender)
if(gender != S.gender && S.gender != NEUTER)
continue
if( !(species in S.species_allowed))
continue
@@ -921,7 +921,7 @@ datum/preferences
var/list/valid_facialhairstyles = list()
for(var/facialhairstyle in facial_hair_styles_list)
var/datum/sprite_accessory/S = facial_hair_styles_list[facialhairstyle]
if(gender != S.gender)
if(gender != S.gender && S.gender != NEUTER)
continue
if( !(species in S.species_allowed))
continue