Fix grabbing aliens grabbing yourself.

They were not updated to the new grab refactor when click code rework was ported.
This commit is contained in:
d3athrow
2014-06-09 18:34:23 -04:00
committed by ZomgPonies
parent a3bb74cf07
commit 7fc8fdea05
@@ -244,10 +244,9 @@
if ("grab")
if (M == src)
return
var/obj/item/weapon/grab/G = new /obj/item/weapon/grab( M, M, src )
var/obj/item/weapon/grab/G = new /obj/item/weapon/grab( M, src )
M.put_in_active_hand(G)
grabbed_by += G
G.synch()