fixes stray bugs

This commit is contained in:
Schnayy
2021-09-11 01:28:49 -05:00
committed by atermonera
parent 03f7149e09
commit 0b38c37390
5 changed files with 18 additions and 2 deletions

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

@@ -65,7 +65,7 @@
dat += "<A href='?src=\ref[src];choice=claim'>Claim points.</A><br>"
else
dat += "No ID inserted. <A href='?src=\ref[src];choice=insert'>Insert ID.</A><br>"
dat += "High-speed processing is <A href='?src=\ref[src];toggle_speed=1'>[(machine.speed_process ? "<font color='green'>active</font>" : "<font color='red'>inactive</font>")]."
dat += "High-speed processing is <A href='?src=\ref[src];toggle_speed=1'>[(machine.speed_process ? "<font color='green'>active</font>" : "<font color='red'>inactive</font>")]</A>."
dat += "<hr><table>"
for(var/ore in machine.ores_processing)

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

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