From 81e20f6f387dcc23a788f7ded5fa13bef9624963 Mon Sep 17 00:00:00 2001 From: SatinIsle Date: Wed, 25 Sep 2024 20:28:57 +0100 Subject: [PATCH] Very minor change to wording to make it clear the prey is in your belly --- code/modules/vore/chat_healthbars.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/chat_healthbars.dm b/code/modules/vore/chat_healthbars.dm index be1337cce1b..0ddab45b7a1 100644 --- a/code/modules/vore/chat_healthbars.dm +++ b/code/modules/vore/chat_healthbars.dm @@ -137,7 +137,7 @@ if(!belly_announce) var/datum/digest_mode/selective/DM_S = GLOB.digest_modes[DM_SELECT] var/digest_mode = b.digest_mode == DM_SELECT ? DM_S.get_selective_mode(b, thing) : b.digest_mode - to_chat(src, "[digest_mode] - Within [b.name]:") //We only want to announce the belly if we found something + to_chat(src, "[digest_mode] - Within your [b.name]:") //We only want to announce the belly if we found something belly_announce = TRUE var/mob/living/ourmob = thing ourmob.chat_healthbar(src, TRUE, TRUE)