From ac9b96a4325137b342773ac2f7510d290b79c51c Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Wed, 9 Dec 2015 18:53:24 -0500 Subject: [PATCH] Death Nettle Fix --- code/modules/hydroponics/grown_inedible.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/grown_inedible.dm b/code/modules/hydroponics/grown_inedible.dm index c2ae0074f2b..95c6e9350f4 100644 --- a/code/modules/hydroponics/grown_inedible.dm +++ b/code/modules/hydroponics/grown_inedible.dm @@ -92,8 +92,7 @@ user.Paralyse(5) user << "You are stunned by the Deathnettle when you try picking it up!" -/obj/item/weapon/grown/nettle/death/attack(mob/living/carbon/M, mob/user) - if(!..()) return +/obj/item/weapon/grown/nettle/death/afterattack(mob/living/carbon/M, mob/user) if(istype(M, /mob/living)) M << "You are stunned by the powerful acid of the Deathnettle!" add_logs(M, user, "attacked", src) @@ -103,6 +102,7 @@ M.Paralyse(force / 6) M.Weaken(force / 15) M.drop_item() + ..() /obj/item/weapon/corncob name = "corn cob"