fixes stray bugs

This commit is contained in:
Schnayy
2022-01-04 18:46:15 -08:00
committed by atermonera
parent 03f7149e09
commit 0b38c37390
5 changed files with 18 additions and 2 deletions
@@ -95,6 +95,14 @@
/mob/living/carbon/human/get_gender()
return identifying_gender ? identifying_gender : gender
/mob/living/carbon/human/name_gender() /// Returns proper names for gender identites
if(identifying_gender == "plural")
return "other"
if(identifying_gender == "neuter")
return "none"
else
return get_gender()
// This is the 'mechanical' check for synthetic-ness, not appearance
// Returns the company that made the synthetic
/mob/living/carbon/human/isSynthetic()
+3
View File
@@ -590,6 +590,9 @@
/mob/proc/get_gender()
return gender
/mob/proc/name_gender()
return gender
/mob/proc/see(message)
if(!is_active())
return 0