From 8cdc7929209b0b4bd84b59a41dd61ef5f2e0b8f9 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Fri, 15 May 2020 17:55:19 -0700 Subject: [PATCH] Merge pull request #7090 from VOREStation/aro-poismes Don't give POI SMES more charge than possible --- code/modules/power/smes_construction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index 558e879a871..a43bf079c84 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -58,7 +58,7 @@ // Pre-installed and pre-charged SMES hidden from the station, for use in submaps. /obj/machinery/power/smes/buildable/point_of_interest/Initialize() . = ..() - charge = 1e7 // Should be enough for an individual POI. + charge = capacity // Should be enough for an individual POI. RCon = FALSE input_level = input_level_max output_level = output_level_max