diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index ebcb36e46ea..ad7b47fda22 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) && !istype(src, /obj/item/restraints/handcuffs/toy)) + if((CLUMSY in user.mutations) && prob(50) && !istype(src, /obj/item/restraints/handcuffs/toy)) to_chat(user, "Uh... how do those things work?!") apply_cuffs(user,user)