From 8fee615d85d3617a389cc5a61c60d6e2e851db32 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Thu, 6 Jun 2013 14:15:19 +0100 Subject: [PATCH] * Added a message to the user. --- code/modules/mob/living/carbon/human/human.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 5e94d2aab9f..1b69c8cc308 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -483,6 +483,7 @@ if(href_list["pockets"]) //visible_message("[usr] tries to empty [src]'s pockets.", \ "[usr] tries to empty [src]'s pockets.") // Pickpocketing! + usr << "You try to empty [src]'s pockets." if(do_mob(usr, src, STRIP_DELAY * 0.5)) u_equip(r_store) u_equip(l_store)