From 6e21f6a7812e648df46357240246d309522c3104 Mon Sep 17 00:00:00 2001 From: Mithrandalf Date: Sat, 29 Dec 2018 22:51:58 +0000 Subject: [PATCH] tiny little code tidy --- 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 e030454f7f2..7c26e5c405e 100644 --- a/code/game/objects/items/weapons/handcuffs.dm +++ b/code/game/objects/items/weapons/handcuffs.dm @@ -24,7 +24,7 @@ if(!istype(C)) return - if((CLUMSY in user.mutations) && prob(50) && (ignoresClumsy == FALSE)) + if((CLUMSY in user.mutations) && prob(50) && (!ignoresClumsy)) to_chat(user, "Uh... how do those things work?!") apply_cuffs(user,user)