From cf5e28ad83b03f1cfd70e69e55cf2c52edf281f1 Mon Sep 17 00:00:00 2001 From: Ashe Higgs Date: Wed, 31 Jan 2018 15:09:44 -0500 Subject: [PATCH] Give integration cogs power generation (#35181) --- .../antagonists/clockcult/clock_items/integration_cog.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/clockcult/clock_items/integration_cog.dm b/code/modules/antagonists/clockcult/clock_items/integration_cog.dm index 41473270d36..dbc91d294a0 100644 --- a/code/modules/antagonists/clockcult/clock_items/integration_cog.dm +++ b/code/modules/antagonists/clockcult/clock_items/integration_cog.dm @@ -30,6 +30,6 @@ var/obj/item/stock_parts/cell/cell = apc.cell if(cell && (cell.charge / cell.maxcharge > COG_MAX_SIPHON_THRESHOLD)) cell.use(1) - adjust_clockwork_power( ) //Power is shared, so only do it once; this runs very quickly so it's about 5 W/second + adjust_clockwork_power(1) //Power is shared, so only do it once; this runs very quickly so it's about 5 W/second #undef COG_MAX_SIPHON_THRESHOLD