From 4af6e8a24302974c6e28f21d63da2f67b557a831 Mon Sep 17 00:00:00 2001 From: Nokko Date: Wed, 11 Dec 2019 21:41:45 -0800 Subject: [PATCH] Fix minor spelling error in surgery ```diff -- KOM-RAD's hand slips, tearing blood vessals and causing massive bleeding in Vampy The Vampiric Clown's lower body with the hemostat! ++ KOM-RAD's hand slips, tearing blood vessels and causing massive bleeding in Vampy The Vampiric Clown's lower body with the hemostat! ``` --- code/modules/surgery/generic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/generic.dm b/code/modules/surgery/generic.dm index c66d95df899..54a9c4c88be 100644 --- a/code/modules/surgery/generic.dm +++ b/code/modules/surgery/generic.dm @@ -83,7 +83,7 @@ /datum/surgery_step/generic/clamp_bleeders/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool,datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) - user.visible_message(" [user]'s hand slips, tearing blood vessals and causing massive bleeding in [target]'s [affected.name] with \the [tool]!", \ + user.visible_message(" [user]'s hand slips, tearing blood vessels and causing massive bleeding in [target]'s [affected.name] with \the [tool]!", \ " Your hand slips, tearing blood vessels and causing massive bleeding in [target]'s [affected.name] with \the [tool]!",) affected.receive_damage(10) return 0