From bab9132ab606b4cf593d7f6b8db04daeccbeaeaf Mon Sep 17 00:00:00 2001 From: Chinsky Date: Mon, 7 Jan 2013 20:52:53 +0400 Subject: [PATCH] Fixed messages for reinforcing grab not appearing. --- code/modules/mob/mob_grab.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index 4b02724364a..939ef9d9871 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -167,7 +167,7 @@ if (state < 2) if (!( allow_upgrade )) return - visible_message("\red [assailant] has grabbed [affecting] aggressively (now hands)!") + assailant.visible_message("\red [assailant] has grabbed [affecting] aggressively (now hands)!") state = 2 icon_state = "grabbed1" /*if (prob(75)) @@ -204,7 +204,7 @@ assailant << "\blue You squeeze [affecting], but nothing interesting happens." return - visible_message("\red [assailant] has reinforced \his grip on [affecting] (now neck)!") + assailant.visible_message("\red [assailant] has reinforced \his grip on [affecting] (now neck)!") state = 3 icon_state = "grabbed+1" if (!( affecting.buckled ))