From 95905e94a3ac4381165c230ac8689016b430e992 Mon Sep 17 00:00:00 2001 From: TDSSS <32099540+TDSSS@users.noreply.github.com> Date: Thu, 27 Dec 2018 22:09:24 +0100 Subject: [PATCH] fixed clumsy handcuff interaction --- 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 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)