From a221e46bc6c9c0ea3d444d0ffb1088df2aa4b64e Mon Sep 17 00:00:00 2001 From: The Sharkening <95130227+StrangeWeirdKitten@users.noreply.github.com> Date: Fri, 10 May 2024 12:38:32 -0600 Subject: [PATCH] Absolute Pain (Doubles the SMES input / output (#1447) I can not state how heavily fucked our powergrid is right now. So here's a bandaid solution. ## Changelog :cl: balance: doubles SMES input / output /:cl: --- code/modules/power/smes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/smes.dm b/code/modules/power/smes.dm index bf866f234e3..9b6a6d41ea7 100644 --- a/code/modules/power/smes.dm +++ b/code/modules/power/smes.dm @@ -64,7 +64,7 @@ /obj/machinery/power/smes/RefreshParts() SHOULD_CALL_PARENT(FALSE) - var/power_coefficient = 0 + var/power_coefficient = 1 // Bubber edit var/max_charge = 0 var/new_charge = 0 for(var/datum/stock_part/capacitor/capacitor in component_parts)