From 362dbfc6d2a7372c7e094824474984d6d31c3c8e Mon Sep 17 00:00:00 2001 From: RKz Date: Fri, 22 Sep 2023 16:32:42 -0400 Subject: [PATCH] fix broken grammar --- code/modules/mob/living/carbon/carbon_defense.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/carbon_defense.dm b/code/modules/mob/living/carbon/carbon_defense.dm index 7a17d674d4625..9e6e99a2fd94d 100644 --- a/code/modules/mob/living/carbon/carbon_defense.dm +++ b/code/modules/mob/living/carbon/carbon_defense.dm @@ -288,14 +288,14 @@ // Let people know if they hugged someone really warm or really cold if(M.bodytemperature > BODYTEMP_HEAT_DAMAGE_LIMIT) - to_chat(src, "It feels like [M] is over heating as they hug you.") + to_chat(src, "It feels like [M] is over heating as [M.p_they()] hug[M.p_s()] you.") else if(M.bodytemperature < BODYTEMP_COLD_DAMAGE_LIMIT) - to_chat(src, "It feels like [M] is freezing as they hug you.") + to_chat(src, "It feels like [M] is freezing as [M.p_they()] hug[M.p_s()] you.") if(bodytemperature > BODYTEMP_HEAT_DAMAGE_LIMIT) - to_chat(M, "It feels like [src] is over heating as you hug them.") + to_chat(M, "It feels like [src] is over heating as you hug [p_them()].") else if(bodytemperature < BODYTEMP_COLD_DAMAGE_LIMIT) - to_chat(M, "It feels like [src] is freezing as you hug them.") + to_chat(M, "It feels like [src] is freezing as you hug [p_them()].") if(HAS_TRAIT(M, TRAIT_FRIENDLY)) var/datum/component/mood/mood = M.GetComponent(/datum/component/mood)