From 454eb5307f1db4ab7c8120074ad9172b60990815 Mon Sep 17 00:00:00 2001 From: Kevin Zheng Date: Tue, 12 Dec 2023 02:03:01 -0800 Subject: [PATCH] Turn off speedup and heat scaling to isolate bug (#22405) --- Content.Shared/CCVar/CCVars.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 704705c3d9..a263cfc4f5 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1051,14 +1051,14 @@ namespace Content.Shared.CCVar /// in-game. /// public static readonly CVarDef AtmosSpeedup = - CVarDef.Create("atmos.speedup", 8f, CVar.SERVERONLY); + CVarDef.Create("atmos.speedup", 1f, CVar.SERVERONLY); /// /// Like atmos.speedup, but only for gas and reaction heat values. 64x means /// gases heat up and cool down 64x faster than real life. /// public static readonly CVarDef AtmosHeatScale = - CVarDef.Create("atmos.heat_scale", 64f, CVar.SERVERONLY); + CVarDef.Create("atmos.heat_scale", 1f, CVar.SERVERONLY); /* * MIDI instruments -- 2.51.2