mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-25 22:28:00 +01:00
fixes stray bugs
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user