From 92f1a3cd6071885d5e85c817c6b0d2f39f0162a9 Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Tue, 27 Jan 2026 19:02:03 -0500 Subject: [PATCH] Corrects mispelled "sheering" pain in spine implant emp text (#95006) ## About The Pull Request sheering -> shearing ## Why It's Good For The Game I assume they meant shearing & not searing, cause it's the body being smushed. They definitely didn't mean sheering. ## Changelog :cl: spellcheck: spine implant emp damaging text spells "shearing" correctly /:cl: --- code/modules/surgery/organs/internal/cyberimp/augments_chest.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/internal/cyberimp/augments_chest.dm b/code/modules/surgery/organs/internal/cyberimp/augments_chest.dm index 3f993dabdcf..910c39c076f 100644 --- a/code/modules/surgery/organs/internal/cyberimp/augments_chest.dm +++ b/code/modules/surgery/organs/internal/cyberimp/augments_chest.dm @@ -301,7 +301,7 @@ . = ..() if(!owner || . & EMP_PROTECT_SELF) return - to_chat(owner, span_warning("You feel sheering pain as your body is crushed like a soda can!")) + to_chat(owner, span_warning("You feel shearing pain as your body is crushed like a soda can!")) owner.apply_damage(20/severity, BRUTE, def_zone = BODY_ZONE_CHEST) /obj/item/organ/cyberimp/chest/spine/on_mob_insert(mob/living/carbon/organ_owner, special, movement_flags)