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