From 5dae4072abe9e87297ba8d0ac76951eb4217fd32 Mon Sep 17 00:00:00 2001 From: Mithrandalf Date: Sat, 29 Dec 2018 20:34:00 +0000 Subject: [PATCH] put in the brackets to fix the cluimsy thing --- code/game/objects/items/weapons/handcuffs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)