From 94a3f53e31c6b07a4b7ca40110994684e7ada57c Mon Sep 17 00:00:00 2001
From: GoblinBackwards <22856555+GoblinBackwards@users.noreply.github.com>
Date: Mon, 10 Oct 2022 04:24:18 +0100
Subject: [PATCH] Fixes removing objects embedded in yourself (#70389)
Fixes removing objects embedding in yourself, as it was ref'ed to the wrong items since the bodypart refactors.
---
code/modules/surgery/bodyparts/_bodyparts.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm
index f734c27e7a1..ad9df41d8c9 100644
--- a/code/modules/surgery/bodyparts/_bodyparts.dm
+++ b/code/modules/surgery/bodyparts/_bodyparts.dm
@@ -263,7 +263,7 @@
for(var/obj/item/embedded_thing in embedded_objects)
var/stuck_word = embedded_thing.isEmbedHarmless() ? "stuck" : "embedded"
- check_list += "\t There is \a [embedded_thing] [stuck_word] in your [name]!"
+ check_list += "\t There is \a [embedded_thing] [stuck_word] in your [name]!"
/obj/item/bodypart/blob_act()