diff --git a/auxmos.dll b/auxmos.dll index f0bdad0c05..606d6fd89f 100644 Binary files a/auxmos.dll and b/auxmos.dll differ diff --git a/auxmos.pdb b/auxmos.pdb index ea65001a58..f8070c5e5d 100644 Binary files a/auxmos.pdb and b/auxmos.pdb differ diff --git a/auxtools.dll b/auxtools.dll deleted file mode 100644 index 473d124340..0000000000 Binary files a/auxtools.dll and /dev/null differ diff --git a/auxtools.pdb b/auxtools.pdb deleted file mode 100644 index bdc7e4e93a..0000000000 Binary files a/auxtools.pdb and /dev/null differ diff --git a/code/controllers/subsystem/air.dm b/code/controllers/subsystem/air.dm index 093f6ae53d..5e95eee220 100644 --- a/code/controllers/subsystem/air.dm +++ b/code/controllers/subsystem/air.dm @@ -236,7 +236,7 @@ SUBSYSTEM_DEF(air) /datum/controller/subsystem/air/proc/process_turf_equalize(resumed = 0) if(!resumed) - src.currentrun = process_turf_equalize_extools(resumed, (Master.current_ticklimit - TICK_USAGE) * 0.1 * world.tick_lag) + src.currentrun = process_turf_equalize_extools((Master.current_ticklimit - TICK_USAGE) * world.tick_lag) if(src.currentrun.len) pause() else @@ -275,7 +275,7 @@ SUBSYSTEM_DEF(air) /datum/controller/subsystem/air/proc/process_turfs(resumed = 0) if(!resumed) begin_turf_process() - if(process_turfs_extools(resumed, (Master.current_ticklimit - TICK_USAGE) * 0.1 * world.tick_lag)) + if(process_turfs_extools((Master.current_ticklimit - TICK_USAGE) * world.tick_lag)) pause() /* //cache for sanic speed diff --git a/code/modules/atmospherics/machinery/datum_pipeline.dm b/code/modules/atmospherics/machinery/datum_pipeline.dm index 350a08dce6..200e176d0f 100644 --- a/code/modules/atmospherics/machinery/datum_pipeline.dm +++ b/code/modules/atmospherics/machinery/datum_pipeline.dm @@ -255,7 +255,8 @@ total_thermal_energy += G.thermal_energy() total_heat_capacity += G.heat_capacity() - total_gas_mixture.set_temperature(total_heat_capacity ? total_thermal_energy/total_heat_capacity : 0) + if(total_heat_capacity) + total_gas_mixture.set_temperature(total_thermal_energy/total_heat_capacity) if(total_gas_mixture.return_volume() > 0) //Update individual gas_mixtures by volume ratio