[MIRROR] Fixes stray bugs

This commit is contained in:
Chompstation Bot
2021-09-27 18:46:27 +00:00
parent cfad19ad15
commit 2d2fa36094
4 changed files with 2481 additions and 1 deletions

View File

@@ -73,6 +73,7 @@
/mob/living/carbon/human/set_id_info(var/obj/item/weapon/card/id/id_card)
..()
id_card.age = age
id_card.sex = capitalize(name_gender())
/obj/item/weapon/card/id/tgui_data(mob/user)
var/list/data = list()

View File

@@ -11,7 +11,11 @@
var/list/insertable = list(
/obj/item/weapon/reagent_containers/food/snacks,
/obj/item/weapon/holder,
/obj/item/weapon/paper
/obj/item/weapon/paper,
/obj/item/clothing/head/wizard,
/obj/item/clothing/head/cakehat,
/obj/item/clothing/mask/gas/clown_hat,
/obj/item/clothing/head/beret
)
/obj/item/weapon/reagent_containers/cooking_container/Initialize()

View File

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

File diff suppressed because it is too large Load Diff