diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index 070e058b2d0..c87bef17763 100644 --- a/code/game/objects/items/weapons/handcuffs.dm +++ b/code/game/objects/items/weapons/handcuffs.dm @@ -23,7 +23,7 @@ if(!istype(C)) return - if(CLUMSY in user.mutations && prob(50)) + if((CLUMSY in user.mutations) && prob(50)) to_chat(user, "Uh... how do those things work?!") apply_cuffs(user,user)