diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index 8a7ea438be..ba84546258 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -299,7 +299,12 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem var canInsert = CanInsert(uid, component, args.Thrown); var randDouble = _robustRandom.NextDouble(); - if (!canInsert || randDouble > 0.75) + if (!canInsert) + { + return; + } + + if (randDouble > 0.75) { _audioSystem.PlayPvs(component.MissSound, uid);