From ac577c769997844759f9e01d1ce084751c63902a Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Tue, 3 Aug 2021 17:19:02 -0700 Subject: [PATCH] adds powermix to the list of accepted SM properties, whoops --- code/modules/power/supermatter/supermatter.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index 59e42c250a..37d96b65ea 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -15,7 +15,7 @@ /datum/auxgm/proc/add_supermatter_properties(datum/gas/gas) var/g = gas.id var/list/props = src.supermatter - if(gas.heat_penalty || gas.transmit_modifier || gas.radioactivity_modifier || gas.heat_resistance || gas.powerloss_inhibition) + if(gas.powermix || gas.heat_penalty || gas.transmit_modifier || gas.radioactivity_modifier || gas.heat_resistance || gas.powerloss_inhibition) props[HEAT_PENALTY][g] = gas.heat_penalty props[TRANSMIT_MODIFIER][g] = gas.transmit_modifier props[RADIOACTIVITY_MODIFIER][g] = gas.radioactivity_modifier