mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 19:15:11 +01:00
Fix custom species synthetics using the burger hunger icon
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user