From b2e51d55ef537631020bd1931543a86eb4aad7d7 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Mon, 11 Jun 2012 13:58:41 +0000 Subject: [PATCH] - Fixed the problem with cable handcuffs where you could not make a pair from a cable coil with exactly 15 lengths of wire. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3791 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/power/cable.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index 1ab650124a9..49280352ef9 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -252,10 +252,10 @@ if(src.amount <= 14) usr << "\red You need at least 15 lengths to make restraints!" return - src.use(15) var/obj/item/weapon/handcuffs/cable/B = new /obj/item/weapon/handcuffs/cable(usr.loc) B.icon_state = "cuff_[color]" usr << "\blue You wind some cable together to make some restraints." + src.use(15) else usr << "\blue You cannot do that." ..()