Fixes linda heat capacity errors (#70071)

We make the assumption that a turf's heat capacity will never be 0. This is safe because we've got an override of /datum/gas_mixture for turfs that overrides 0 heat cap with 7000 (SPACE)
This is done to make cold actually flow through empty tiles, because we are hacks.

I forgot to include type in my gas mixture creation logic, so this was being dropped. FIXXXX
This commit is contained in:
LemonInTheDark
2022-09-25 23:17:39 -07:00
committed by GitHub
parent eb77f2f8fc
commit ef89f3be4b
4 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -15,6 +15,6 @@
if(F.blocks_air)
//skip walls
continue
var/datum/gas_mixture/GM = SSair.parse_gas_string(F.initial_gas_mix)
var/datum/gas_mixture/GM = SSair.parse_gas_string(F.initial_gas_mix, /datum/gas_mixture/turf)
F.copy_air(GM)
F.update_visuals()