From 45c36b09d50c76f03e20802874f64b8a4b7ec799 Mon Sep 17 00:00:00 2001 From: Little-119 Date: Mon, 18 May 2020 20:17:50 -0400 Subject: [PATCH] Fix custom species synthetics using the burger hunger icon --- code/modules/mob/living/carbon/human/life.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 135c5df17c..444607b470 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1225,16 +1225,16 @@ var/hungry_alert = /obj/screen/alert/hungry var/starving_alert = /obj/screen/alert/starving - if(get_species() == SPECIES_CUSTOM) + if(isSynthetic()) + fat_alert = /obj/screen/alert/fat/synth + hungry_alert = /obj/screen/alert/hungry/synth + starving_alert = /obj/screen/alert/starving/synth + else if(get_species() == SPECIES_CUSTOM) var/datum/species/custom/C = species if(/datum/trait/bloodsucker in C.traits) fat_alert = /obj/screen/alert/fat/vampire hungry_alert = /obj/screen/alert/hungry/vampire starving_alert = /obj/screen/alert/starving/vampire - else if(isSynthetic()) - fat_alert = /obj/screen/alert/fat/synth - hungry_alert = /obj/screen/alert/hungry/synth - starving_alert = /obj/screen/alert/starving/synth switch(nutrition) if(450 to INFINITY)