diff --git a/code/game/objects/items/devices/scanners/health_analyzer.dm b/code/game/objects/items/devices/scanners/health_analyzer.dm index 7963806421a..5366ebc982a 100644 --- a/code/game/objects/items/devices/scanners/health_analyzer.dm +++ b/code/game/objects/items/devices/scanners/health_analyzer.dm @@ -274,7 +274,7 @@ missing_organs += "lungs" if(!(TRAIT_NOMETABOLISM in the_dudes_species.species_traits) && !humantarget.getorganslot(ORGAN_SLOT_LIVER)) missing_organs += "liver" - if(!(TRAIT_NOHUNGER in the_dudes_species.species_traits) && !humantarget.getorganslot(ORGAN_SLOT_STOMACH)) + if(!(NOSTOMACH in the_dudes_species.species_traits) && !humantarget.getorganslot(ORGAN_SLOT_STOMACH)) missing_organs += "stomach" if(!(NO_TONGUE in the_dudes_species.species_traits) && !humantarget.getorganslot(ORGAN_SLOT_TONGUE)) missing_organs += "tongue" diff --git a/code/modules/mob/living/carbon/human/species_types/abductors.dm b/code/modules/mob/living/carbon/human/species_types/abductors.dm index 256e981c63f..648ccbb54b9 100644 --- a/code/modules/mob/living/carbon/human/species_types/abductors.dm +++ b/code/modules/mob/living/carbon/human/species_types/abductors.dm @@ -3,7 +3,7 @@ id = SPECIES_ABDUCTOR say_mod = "gibbers" sexes = FALSE - species_traits = list(NOBLOOD,NOEYESPRITES) + species_traits = list(NOBLOOD, NOEYESPRITES, NOSTOMACH) inherent_traits = list( TRAIT_CHUNKYFINGERS, TRAIT_NOBREATH, diff --git a/code/modules/mob/living/carbon/human/species_types/android.dm b/code/modules/mob/living/carbon/human/species_types/android.dm index 57047c7b4f7..8e92ff91513 100644 --- a/code/modules/mob/living/carbon/human/species_types/android.dm +++ b/code/modules/mob/living/carbon/human/species_types/android.dm @@ -2,7 +2,7 @@ name = "Android" id = SPECIES_ANDROID say_mod = "states" - species_traits = list(NOBLOOD, NO_DNA_COPY, NOTRANSSTING) + species_traits = list(NOBLOOD, NO_DNA_COPY, NOTRANSSTING, NOSTOMACH) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, TRAIT_GENELESS, diff --git a/code/modules/surgery/organs/stomach/_stomach.dm b/code/modules/surgery/organs/stomach/_stomach.dm index e1dc9cd8004..2f5f526cc54 100644 --- a/code/modules/surgery/organs/stomach/_stomach.dm +++ b/code/modules/surgery/organs/stomach/_stomach.dm @@ -206,7 +206,7 @@ human.remove_movespeed_modifier(/datum/movespeed_modifier/hunger) /obj/item/organ/internal/stomach/get_availability(datum/species/owner_species) - return !((TRAIT_NOHUNGER in owner_species.inherent_traits) || (NOSTOMACH in owner_species.species_traits)) + return !(NOSTOMACH in owner_species.species_traits) /obj/item/organ/internal/stomach/proc/handle_disgust(mob/living/carbon/human/disgusted, delta_time, times_fired) var/old_disgust = disgusted.old_disgust