From c63831a8a5a0bca7bd7afece8af2db8f81e554c0 Mon Sep 17 00:00:00 2001 From: DATAxPUNGED <44149906+DATA-xPUNGED@users.noreply.github.com> Date: Sun, 12 Nov 2023 06:21:21 -0300 Subject: [PATCH] Fixes an oversight in the examine message for a carbon with an empty golem stomach. (#79657) ## About The Pull Request Noticed on a round recently where the warden got the golem stomach that the message read as "He are as still as a statue!" Turns out that the "are" wasn't setup in our pronoun system properly. I think this wasn't noticed before because golems don't have a gender, maybe? ## Why It's Good For The Game Grammatical errors? bad! ## Changelog :cl:DATA_ spellcheck: The examine message for a carbon with an empty golem stomach now properly matches said carbon's gender. /:cl: --- code/modules/surgery/organs/internal/stomach/stomach_golem.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/internal/stomach/stomach_golem.dm b/code/modules/surgery/organs/internal/stomach/stomach_golem.dm index 79d3976f22d..5f721fa52b1 100644 --- a/code/modules/surgery/organs/internal/stomach/stomach_golem.dm +++ b/code/modules/surgery/organs/internal/stomach/stomach_golem.dm @@ -74,7 +74,7 @@ return TRUE /datum/status_effect/golem_statued/get_examine_text() - return span_warning("[owner.p_They()] are as still as a statue!") + return span_warning("[owner.p_They()] [owner.p_are()] as still as a statue!") /datum/status_effect/golem_statued/on_remove() owner.visible_message(span_notice("[owner] slowly stirs back into motion!"), span_notice("You have gathered enough strength to move your body once more."))