From fff6e949dcaafb475126948de97c66befbc60cfa Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Sun, 10 May 2026 17:03:14 -0500 Subject: [PATCH] Stoat tongue has `TRAIT_SPEAKS_CLEARLY` (fell for it again award) (#96019) --- code/game/machinery/dna_infuser/organ_sets/stoat_organs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/dna_infuser/organ_sets/stoat_organs.dm b/code/game/machinery/dna_infuser/organ_sets/stoat_organs.dm index 623f8607e9a..343767421da 100644 --- a/code/game/machinery/dna_infuser/organ_sets/stoat_organs.dm +++ b/code/game/machinery/dna_infuser/organ_sets/stoat_organs.dm @@ -139,7 +139,7 @@ return var/mob/living/carbon/human/human_owner = organ_owner mob_base_height = human_owner.get_base_mob_height() - human_owner.set_mob_height(HUMAN_HEIGHT_TALLER, update_dna = FALSE) + human_owner.set_mob_height(HUMAN_HEIGHT_TALLEST, update_dna = FALSE) /obj/item/organ/heart/stoat/on_mob_remove(mob/living/carbon/organ_owner, special, movement_flags) . = ..() @@ -161,7 +161,7 @@ liked_foodtypes = MEAT | RAW | GORE | BUGS disliked_foodtypes = FRUIT | VEGETABLES taste_sensitivity = 12 - organ_traits = list(TRAIT_FERAL_BITER) + organ_traits = list(TRAIT_SPEAKS_CLEARLY, TRAIT_FERAL_BITER) /obj/item/organ/tongue/stoat/Initialize(mapload) . = ..()