From 21581df93d0fb0064f02114e200a8e88fb2547db Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 19 Jan 2026 20:40:31 +0100 Subject: [PATCH] Revert "make SharedAudioSystem.Stop not return early when the current tick has already been predicted" (#6375) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Revert "make SharedAudioSystem.Stop not return early when the current tick ha…" This reverts commit c41d63be2726a457135abd811c4742bddffc780a. --- Robust.Shared/Audio/Systems/SharedAudioSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robust.Shared/Audio/Systems/SharedAudioSystem.cs b/Robust.Shared/Audio/Systems/SharedAudioSystem.cs index 82b730d28..8cc9314a5 100644 --- a/Robust.Shared/Audio/Systems/SharedAudioSystem.cs +++ b/Robust.Shared/Audio/Systems/SharedAudioSystem.cs @@ -455,7 +455,7 @@ public abstract partial class SharedAudioSystem : EntitySystem if (uid == null || !Resolve(uid.Value, ref component, false)) return null; - if (_netManager.IsClient && !IsClientSide(uid.Value)) + if (!Timing.IsFirstTimePredicted || (_netManager.IsClient && !IsClientSide(uid.Value))) return null; QueueDel(uid);