From 11402e5337e2f169822ac36fd8259382e3773377 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Tue, 11 Dec 2018 16:22:47 -0500 Subject: [PATCH] this shit is much too hard for tg to handle - makes hotspot_expose ignite plasma and tritium a lot easier --- code/modules/atmospherics/environmental/LINDA_fire.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/atmospherics/environmental/LINDA_fire.dm b/code/modules/atmospherics/environmental/LINDA_fire.dm index ebca252167..587c33e5b8 100644 --- a/code/modules/atmospherics/environmental/LINDA_fire.dm +++ b/code/modules/atmospherics/environmental/LINDA_fire.dm @@ -20,8 +20,8 @@ if(active_hotspot) if(soh) if((tox > 0.5 || trit > 0.5) && oxy > 0.5) - if(active_hotspot.temperature < exposed_temperature) - active_hotspot.temperature = exposed_temperature + if(active_hotspot.temperature < exposed_temperature*50) + active_hotspot.temperature = exposed_temperature*50 if(active_hotspot.volume < exposed_volume) active_hotspot.volume = exposed_volume return 1 @@ -36,7 +36,7 @@ return 0 active_hotspot = new /obj/effect/hotspot(src) - active_hotspot.temperature = exposed_temperature + active_hotspot.temperature = exposed_temperature*50 active_hotspot.volume = exposed_volume*25 active_hotspot.just_spawned = (current_cycle < SSair.times_fired)