mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 22:42:26 +01:00
Clothing Hiding Gender (#11447)
This commit is contained in:
@@ -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."
|
||||
Reference in New Issue
Block a user