From 386b1e6ce445f16715a24dfe3107912c4cc254c6 Mon Sep 17 00:00:00 2001 From: Atlantiscze Date: Wed, 16 Jul 2014 22:59:14 +0200 Subject: [PATCH] Bugfix - cable coil now shows correct transferred amount. --- 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 e693cc11f13..9ab93680ad6 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -308,7 +308,7 @@ return else - user << "You transfer [MAXCOIL - src.amount ] length\s of cable from one coil to the other." + user << "You transfer [MAXCOIL - C.amount ] length\s of cable from one coil to the other." src.amount -= (MAXCOIL-C.amount) src.updateicon() src.update_wclass()