mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 09:35:30 +01:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user