fixes stray bugs

This commit is contained in:
Schnayy
2021-09-11 01:28:49 -05:00
parent 7121ae2383
commit 030741d681
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