From c55acec92bd346b4a144c64dd93a78c424473db4 Mon Sep 17 00:00:00 2001 From: RadiantFlash7 Date: Thu, 17 Jun 2021 05:25:24 -0400 Subject: [PATCH] Makes E-Bolas as they should be. Noncyborg variants. (#16168) * The E-bola is not a cyborg variant. Returns E-bola break out time to 60, instead of 20. Security bolas are limited supply and should be better then makeshift ones. * whoops Adjusts the breakout time to not to default to beartraps and use the 6 seconds listed in the Ebola item. * Update code/game/objects/items/weapons/legcuffs.dm Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> --- code/game/objects/items/weapons/legcuffs.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/legcuffs.dm b/code/game/objects/items/weapons/legcuffs.dm index cc090ac6978..4902665da4a 100644 --- a/code/game/objects/items/weapons/legcuffs.dm +++ b/code/game/objects/items/weapons/legcuffs.dm @@ -129,6 +129,7 @@ icon_state = "e_snare" trap_damage = 0 flags = DROPDEL + breakouttime = 6 SECONDS /obj/item/restraints/legcuffs/beartrap/energy/New() ..() @@ -192,7 +193,7 @@ /obj/item/restraints/legcuffs/bola/energy/throw_impact(atom/hit_atom) if(iscarbon(hit_atom)) - var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy/cyborg(get_turf(hit_atom)) + var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy(get_turf(hit_atom)) B.Crossed(hit_atom, null) qdel(src) ..()