From cf3b3d5c175a520fb2cc992b838e17122c800858 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com> Date: Tue, 15 Feb 2022 12:04:34 +0100 Subject: [PATCH] Lowers atmos tickrate down to 15 TPS by default. (#6721) --- 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 51352e71f3..9935f118bd 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -434,13 +434,13 @@ namespace Content.Shared.CCVar /// Maximum time in milliseconds that atmos can take processing. /// public static readonly CVarDef AtmosMaxProcessTime = - CVarDef.Create("atmos.max_process_time", 5f, CVar.SERVERONLY); + CVarDef.Create("atmos.max_process_time", 3f, CVar.SERVERONLY); /// /// Atmos tickrate in TPS. Atmos processing will happen every 1/TPS seconds. /// public static readonly CVarDef AtmosTickRate = - CVarDef.Create("atmos.tickrate", 26f, CVar.SERVERONLY); + CVarDef.Create("atmos.tickrate", 15f, CVar.SERVERONLY); /* * MIDI instruments