From 6716e048f2c02761509a77a0698e758db476fe8d Mon Sep 17 00:00:00 2001 From: Firecage Date: Sat, 16 Nov 2019 23:22:25 +0200 Subject: [PATCH] Fixes the issue of women on Charlie Station spawning with facial hair. --- code/modules/awaymissions/corpse.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index 3e0d77dde2d..988ac1d5efb 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -177,11 +177,11 @@ if(hairstyle) H.hairstyle = hairstyle else - H.hairstyle = random_hairstyle(gender) + H.hairstyle = random_hairstyle(H.gender) if(facial_hairstyle) H.facial_hairstyle = facial_hairstyle else - H.facial_hairstyle = random_facial_hairstyle(gender) + H.facial_hairstyle = random_facial_hairstyle(H.gender) if(skin_tone) H.skin_tone = skin_tone else