diff --git a/Content.Server/Cargo/Components/CargoConsoleComponent.cs b/Content.Server/Cargo/Components/CargoConsoleComponent.cs index 0c23ce8ce4..7eee231ec9 100644 --- a/Content.Server/Cargo/Components/CargoConsoleComponent.cs +++ b/Content.Server/Cargo/Components/CargoConsoleComponent.cs @@ -113,7 +113,7 @@ namespace Content.Server.Cargo.Components if (!_cargoConsoleSystem.AddOrder(orders.Database.Id, msg.Requester, msg.Reason, msg.ProductId, msg.Amount, _bankAccount.Id)) { - SoundSystem.Play(Filter.Local(), _errorSound.GetSound(), Owner, AudioParams.Default); + SoundSystem.Play(Filter.Pvs(Owner), _errorSound.GetSound(), Owner, AudioParams.Default); } break; } @@ -146,7 +146,7 @@ namespace Content.Server.Cargo.Components || !_cargoConsoleSystem.ChangeBalance(_bankAccount.Id, (-product.PointCost) * order.Amount)) ) { - SoundSystem.Play(Filter.Local(), _errorSound.GetSound(), Owner, AudioParams.Default); + SoundSystem.Play(Filter.Pvs(Owner), _errorSound.GetSound(), Owner, AudioParams.Default); break; }