From b84697055fee3722bd75fb6935d73b7b913a1ed7 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 7 Jul 2013 00:07:18 -0700 Subject: [PATCH] Embedded item string fix. --- code/modules/mob/living/carbon/human/human.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index a14d16e6fd2..68ea8813d5b 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1209,11 +1209,11 @@ mob/living/carbon/human/yank_out_object() var/msg = null switch(rand(1,3)) if(1) - msg ="A spike of pain jolts your [organ] as you bump [O] inside." + msg ="A spike of pain jolts your [organ.display_name] as you bump [O] inside." if(2) - msg ="Your movement jostles [O] in your [organ] painfully." + msg ="Your movement jostles [O] in your [organ.display_name] painfully." if(3) - msg ="[O] in your [organ] twists painfully as you move." + msg ="[O] in your [organ.display_name] twists painfully as you move." src << msg organ.status |= ORGAN_BLEEDING