From b6dd4e0d15b095137c66086c0b1fc842414f7b95 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Sun, 22 Apr 2012 21:09:10 +0100 Subject: [PATCH] TG: Juggernauts no longer take damage from punching. Juggernauts are no longer able to be grabbed (and therefore choked or thrown) Revision: r3112 Author: kortgstation --- code/modules/mob/simple_animal/life.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/simple_animal/life.dm b/code/modules/mob/simple_animal/life.dm index 7c780a9d0f1..29da09bb6ed 100644 --- a/code/modules/mob/simple_animal/life.dm +++ b/code/modules/mob/simple_animal/life.dm @@ -271,6 +271,8 @@ if ("grab") if (M == src) return + if (nopush) + return var/obj/item/weapon/grab/G = new /obj/item/weapon/grab( M ) G.assailant = M if (M.hand)