From ba646c51a13639aab1191769b102690f8095b0dd Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sat, 30 May 2015 20:30:43 -0700 Subject: [PATCH] Fix being able to throw people while not next to them --- code/modules/mob/mob_grab.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index af7313bd920..47e0740be4b 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -56,7 +56,7 @@ //Used by throw code to hand over the mob, instead of throwing the grab. The grab is then deleted by the throw code. /obj/item/weapon/grab/proc/throw() - if(affecting) + if(affecting && assailant.Adjacent(affecting)) if(affecting.buckled) return null if(state >= GRAB_AGGRESSIVE)