From 17ef81e8a5dcdf135507102f610e2d7a3c6b26bb Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Wed, 22 Jun 2016 10:18:44 -0400 Subject: [PATCH] Fixes Clumsy Gun Check --- code/modules/projectiles/gun.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index f86bfff5abb..d684175a6a5 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -140,7 +140,7 @@ //Exclude lasertag guns from the CLUMSY check. if(clumsy_check) if(istype(user)) - if (user.disabilities & CLUMSY && prob(40)) + if((CLUMSY in user.mutations) && prob(40)) to_chat(user, "You shoot yourself in the foot with \the [src]!") var/shot_leg = pick("l_foot", "r_foot") process_fire(user, user, 0, params, zone_override = shot_leg)