From 0e9f4fec4dac4f10e6fc033de2cd13f0741c3f46 Mon Sep 17 00:00:00 2001 From: kate <97811257+winterboekje@users.noreply.github.com> Date: Wed, 21 Dec 2022 20:44:42 -0500 Subject: [PATCH] fixes typo for insertion during organ manipulation (#72136) ## About The Pull Request **BEFORE:** display_pain(target, "You can feel your something being placed in your [parse_zone(target_zone)]!") **AFTER:** display_pain(target, "You can feel something being placed in your [parse_zone(target_zone)]!") Removes lazy coding, improves visual fidelity ## Why It's Good For The Game ugly :cl: spellcheck: drastically improves grammar for inserting something during organ manipulation /:cl: --- code/modules/surgery/organ_manipulation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organ_manipulation.dm b/code/modules/surgery/organ_manipulation.dm index 4c6ffba81b4..8edb3f068ab 100644 --- a/code/modules/surgery/organ_manipulation.dm +++ b/code/modules/surgery/organ_manipulation.dm @@ -143,7 +143,7 @@ span_notice("[user] begins to insert [tool] into [target]'s [parse_zone(target_zone)]."), span_notice("[user] begins to insert something into [target]'s [parse_zone(target_zone)]."), ) - display_pain(target, "You can feel your something being placed in your [parse_zone(target_zone)]!") + display_pain(target, "You can feel something being placed in your [parse_zone(target_zone)]!") else if(implement_type in implements_extract)