From 365abe1c5a6f1c21b251261d471bb05f7388d1b5 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 27 Dec 2020 17:15:59 -0500 Subject: [PATCH] Allows Energy Bola to be catchable Allows Energy Bola to be catchable --- code/game/objects/items/handcuffs.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index 4c9ea06620..296b46bf85 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -377,10 +377,3 @@ hitsound = 'sound/weapons/taserhit.ogg' w_class = WEIGHT_CLASS_SMALL breakouttime = 60 - -/obj/item/restraints/legcuffs/bola/energy/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum) - if(iscarbon(hit_atom)) - var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy/cyborg(get_turf(hit_atom)) - B.Crossed(hit_atom) - qdel(src) - ..()