Skip to content

Commit

Permalink
fix broken grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsar-Salat committed Sep 22, 2023
1 parent 1c4cab7 commit 362dbfc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/mob/living/carbon/carbon_defense.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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, "<span class='warning'>It feels like [M] is over heating as they hug you.</span>")
to_chat(src, "<span class='warning'>It feels like [M] is over heating as [M.p_they()] hug[M.p_s()] you.</span>")
else if(M.bodytemperature < BODYTEMP_COLD_DAMAGE_LIMIT)
to_chat(src, "<span class='warning'>It feels like [M] is freezing as they hug you.</span>")
to_chat(src, "<span class='warning'>It feels like [M] is freezing as [M.p_they()] hug[M.p_s()] you.</span>")

if(bodytemperature > BODYTEMP_HEAT_DAMAGE_LIMIT)
to_chat(M, "<span class='warning'>It feels like [src] is over heating as you hug them.</span>")
to_chat(M, "<span class='warning'>It feels like [src] is over heating as you hug [p_them()].</span>")
else if(bodytemperature < BODYTEMP_COLD_DAMAGE_LIMIT)
to_chat(M, "<span class='warning'>It feels like [src] is freezing as you hug them.</span>")
to_chat(M, "<span class='warning'>It feels like [src] is freezing as you hug [p_them()].</span>")

if(HAS_TRAIT(M, TRAIT_FRIENDLY))
var/datum/component/mood/mood = M.GetComponent(/datum/component/mood)
Expand Down

0 comments on commit 362dbfc

Please sign in to comment.