Clothing Hiding Gender (#11447)

This commit is contained in:
Geeves
2021-03-18 11:38:46 +01:00
committed by GitHub
parent f54c69db9e
commit ab2b70ea7c
3 changed files with 11 additions and 7 deletions
+1 -4
View File
@@ -75,7 +75,4 @@ var/list/datum/gender/gender_datums = list()
/atom/proc/get_pronoun(var/wordtype)
var/gender_to_use = get_gender()
return gender_datums[gender_to_use][wordtype]
/mob/living/carbon/human/get_pronoun(var/wordtype)
return gender_datums[pronouns][wordtype]
return gender_datums[gender_to_use][wordtype]
@@ -1156,10 +1156,10 @@
/mob/living/carbon/human/get_gender()
var/skipitems = get_covered_clothes()
var/skipbody = get_covered_body_parts()
. = ..()
var/skipbody = get_covered_body_parts(TRUE)
if((skipbody & FACE || (skipitems & (HIDEMASK|HIDEFACE))) && ((skipbody & UPPER_TORSO && skipbody & LOWER_TORSO) || (skipitems & HIDEJUMPSUIT))) //big suits/masks/helmets make it hard to tell their gender
. = PLURAL
return PLURAL
return pronouns
/mob/living/carbon/human/proc/increase_germ_level(n)
if(gloves)
@@ -0,0 +1,7 @@
author: Geeves
delete-after: True
changes:
- bugfix: "Wearing thick clothing and gas masks now hide your gender again."
- tweak: "Clothing hiding gender is now restricted to thick clothing or clothing that explicitly obscures the face. This means cloth or surgical masks no longer does so."