From 14744895c5d295269e97e9be58252de4ea8e6c7d Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Fri, 18 Apr 2014 06:40:45 -0500 Subject: [PATCH] Juggernauts will no longer be weakened and unable to click stuff if zas knocks them over. --- code/modules/mob/living/simple_animal/constructs.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/simple_animal/constructs.dm b/code/modules/mob/living/simple_animal/constructs.dm index 4739b872cbf..307b06dbdf8 100644 --- a/code/modules/mob/living/simple_animal/constructs.dm +++ b/code/modules/mob/living/simple_animal/constructs.dm @@ -173,6 +173,10 @@ M.show_message("\red [user] gently taps [src] with [O]. ") +/mob/living/simple_animal/construct/armoured/Life() + weakened = 0 + ..() + /mob/living/simple_animal/construct/armoured/bullet_act(var/obj/item/projectile/P) if(istype(P, /obj/item/projectile/energy) || istype(P, /obj/item/projectile/beam)) var/reflectchance = 80 - round(P.damage/3)