From 5d76e239ef4db29bd7dfe6fac5f7b2546d37b415 Mon Sep 17 00:00:00 2001 From: PKPenguin321 Date: Mon, 6 Jun 2016 17:02:08 -0700 Subject: [PATCH] moves the parent call --- code/game/objects/items/weapons/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/twohanded.dm b/code/game/objects/items/weapons/twohanded.dm index 4d764ef21c5..6d5861759c6 100644 --- a/code/game/objects/items/weapons/twohanded.dm +++ b/code/game/objects/items/weapons/twohanded.dm @@ -221,12 +221,12 @@ return /obj/item/weapon/twohanded/dualsaber/attack(mob/target, mob/living/carbon/human/user) - ..() if(user.has_dna()) if(user.dna.check_mutation(HULK)) user << "You grip the blade too hard and accidentally close it!" unwield() return + ..() if(user.disabilities & CLUMSY && (wielded) && prob(40)) impale(user) return