From 0cfaf8e70b51b46b15e82a3839ee0c7400bb6537 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Fri, 5 Jul 2013 22:15:40 -0700 Subject: [PATCH] Minor string fix. --- code/modules/mob/living/carbon/human/human.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index ab9109707e..a14d16e6fd 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1166,10 +1166,11 @@ mob/living/carbon/human/yank_out_object() if(!do_after(U, 80)) return - if(!selection || !affected || !S || !U) - return + if(!selection || !affected || !S || !U) + return + if(self) - visible_message("[src] rips [selection] out of their [affected].display_name in a welter of blood.","You rip [selection] out of your [affected] in a welter of blood.") + visible_message("[src] rips [selection] out of their [affected.display_name] in a welter of blood.","You rip [selection] out of your [affected] in a welter of blood.") else visible_message("[usr] rips [selection] out of [src]'s [affected.display_name] in a welter of blood.","[usr] rips [selection] out of your [affected] in a welter of blood.")