From f09166bd8fbb9dfb45b4e0d5648c733be4ab0b8b Mon Sep 17 00:00:00 2001 From: Pete Goodfellow Date: Fri, 29 Mar 2013 17:11:23 +0000 Subject: [PATCH] Added feedback when grabbing someone fails because they're buckled. --- code/modules/mob/living/carbon/human/human_attackhand.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index ffe74da241c..e6b95a29bdb 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -89,6 +89,8 @@ w_uniform.add_fingerprint(M) var/obj/item/weapon/grab/G = new /obj/item/weapon/grab(M, src) + if(buckled) + M << "You cannot grab [src], \he is buckled in!" if(!G) //the grab will delete itself in New if affecting is anchored return M.put_in_active_hand(G)