From 7079981d332727e9ad14969abb411eb26f6ec9ec Mon Sep 17 00:00:00 2001 From: Neerti Date: Tue, 24 Oct 2017 18:11:01 -0400 Subject: [PATCH] Removes APC destruction from hacked SMES --- code/modules/power/smes_construction.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index f6a40da0c3..bb1603b570 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -85,7 +85,7 @@ // Proc: process() // Parameters: None // Description: Uses parent process, but if grounding wire is cut causes sparks to fly around. -// This also causes the SMES to quickly discharge, and has small chance of damaging output APCs. +// This also causes the SMES to quickly discharge, and has small chance of breaking lights connected to APCs in the powernet. /obj/machinery/power/smes/buildable/process() if(!grounding && (Percentage() > 5)) var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread @@ -93,7 +93,7 @@ s.start() charge -= (output_level_max * SMESRATE) if(prob(1)) // Small chance of overload occuring since grounding is disabled. - apcs_overload(5,10) + apcs_overload(0,10) ..()