Removes redundancies, makes exception for clumsiness

This commit is contained in:
Mithrandalf
2018-12-27 20:20:19 +00:00
parent 0e9191cdd4
commit ac2d3396d6
2 changed files with 1 additions and 7 deletions
-6
View File
@@ -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
+1 -1
View File
@@ -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, "<span class='warning'>Uh... how do those things work?!</span>")
apply_cuffs(user,user)