From ac2d3396d6e5db175267a4e657f5c54c1b3852f1 Mon Sep 17 00:00:00 2001 From: Mithrandalf Date: Thu, 27 Dec 2018 20:20:19 +0000 Subject: [PATCH] Removes redundancies, makes exception for clumsiness --- code/game/objects/items/toys.dm | 6 ------ code/game/objects/items/weapons/handcuffs.dm | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 8da3e6d7a0a..16ae7e685a1 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -1656,12 +1656,6 @@ obj/item/toy/cards/deck/syndicate/black */ /obj/item/restraints/handcuffs/toy - name = "handcuffs" desc = "Toy handcuffs. Plastic and extremely cheaply made." - gender = PLURAL - icon = 'icons/obj/items.dmi' - icon_state = "handcuff" - slot_flags = SLOT_BELT throwforce = 0 - w_class = WEIGHT_CLASS_SMALL breakouttime = 0 //Deciseconds = 60s = 1 minutes \ No newline at end of file diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index 070e058b2d0..ebcb36e46ea 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) && !istype(src, /obj/item/restraints/handcuffs/toy)) to_chat(user, "Uh... how do those things work?!") apply_cuffs(user,user)