From b8b169257eb84e3bf92cb358271b8f9e8900ff3e Mon Sep 17 00:00:00 2001 From: Ghilker <42839747+Ghilker@users.noreply.github.com> Date: Wed, 28 Jul 2021 10:39:57 +0200 Subject: [PATCH] fix HFR from being indestructible (#60475) --- .../machinery/components/fusion/hfr_main_processes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/fusion/hfr_main_processes.dm b/code/modules/atmospherics/machinery/components/fusion/hfr_main_processes.dm index 75a46529acf..5c62493d1ce 100644 --- a/code/modules/atmospherics/machinery/components/fusion/hfr_main_processes.dm +++ b/code/modules/atmospherics/machinery/components/fusion/hfr_main_processes.dm @@ -52,7 +52,7 @@ critical_threshold_proximity = min(critical_threshold_proximity_archived + (DAMAGE_CAP_MULTIPLIER * melting_point), critical_threshold_proximity) if(internal_fusion.total_moles() >= HYPERTORUS_HYPERCRITICAL_MOLES) - critical_threshold_proximity = min(max(0.001 * internal_fusion.total_moles() - 10, 0), HYPERTORUS_MAX_MOLE_DAMAGE) + critical_threshold_proximity += min(max(0.001 * internal_fusion.total_moles() - 10, 0), HYPERTORUS_MAX_MOLE_DAMAGE) if(moderator_internal.total_moles() >= HYPERTORUS_HYPERCRITICAL_MOLES && !check_cracked_parts()) var/obj/machinery/atmospherics/components/unary/hypertorus/part = create_crack()