From 0c9adb1ef6d8499ebbc47a4e545d02b60efdff68 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 19 Jan 2018 10:29:53 -0500 Subject: [PATCH] Merge pull request #34641 from DaxDupont/belt-power Fixes conveyor belt power usage. --- code/modules/recycling/conveyor2.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 05135e9765..6a27842ecf 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -104,7 +104,7 @@ return if(!operating) return - use_power(100) + use_power(6) affecting = loc.contents - src // moved items will be all in loc addtimer(CALLBACK(src, .proc/convey, affecting), 1)