Hug gender (#4195)

* Revert "Update #3? 4?"

* Revert "Revert "Update #3? 4?""

* Hug doesn't reveal gender

* Wrong logic
This commit is contained in:
Atermonera
2017-11-01 23:00:05 -07:00
committed by Anewbe
parent 28ab1e51f3
commit 28e7426597

View File

@@ -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)