mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
[MIRROR] Fixes stray bugs
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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
Reference in New Issue
Block a user