From 6db855ad4ca161c86e1e86d4bf53fe8dda05bc34 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 5 Feb 2018 03:28:24 -0600 Subject: [PATCH] [MIRROR] Doubles cog power generation, and allows them to generate power at half efficiency in uncharged APCs (#5292) * Doubles cog power generation, and allows them to generate power at half efficiency in uncharged APCs * Update integration_cog.dm --- .../antagonists/clockcult/clock_items/integration_cog.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/clockcult/clock_items/integration_cog.dm b/code/modules/antagonists/clockcult/clock_items/integration_cog.dm index 41473270d3..0e1e299325 100644 --- a/code/modules/antagonists/clockcult/clock_items/integration_cog.dm +++ b/code/modules/antagonists/clockcult/clock_items/integration_cog.dm @@ -30,6 +30,8 @@ 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(2) //Power is shared, so only do it once; this runs very quickly so it's about 10 W/second + else + adjust_clockwork_power(1) //Continue generating power when the cell has run dry; 5 W/second -#undef COG_MAX_SIPHON_THRESHOLD +#undef COG_MAX_SIPHON_THRESHOLD \ No newline at end of file