mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Hug gender (#4195)
* Revert "Update #3? 4?" * Revert "Revert "Update #3? 4?"" * Hug doesn't reveal gender * Wrong logic
This commit is contained in:
@@ -277,11 +277,14 @@
|
||||
var/t_him = "them"
|
||||
if(ishuman(target))
|
||||
var/mob/living/carbon/human/T = target
|
||||
switch(T.identifying_gender)
|
||||
if(MALE)
|
||||
t_him = "him"
|
||||
if(FEMALE)
|
||||
t_him = "her"
|
||||
if(!T.species.ambiguous_genders || (T.species.ambiguous_genders && H.species == T.species))
|
||||
switch(T.identifying_gender)
|
||||
if(MALE)
|
||||
t_him = "him"
|
||||
if(FEMALE)
|
||||
t_him = "her"
|
||||
else
|
||||
t_him = "them"
|
||||
else
|
||||
switch(target.gender)
|
||||
if(MALE)
|
||||
|
||||
Reference in New Issue
Block a user