From 084083d8f6fd78cd723f1134d742ddff0fa95f7b Mon Sep 17 00:00:00 2001 From: TokiJumper Date: Tue, 10 Sep 2024 13:46:03 +0500 Subject: [PATCH] remove disposal miss --- .../Unit/EntitySystems/DisposalUnitSystem.cs | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index d6647bbf2e..0e57a76696 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -34,7 +34,7 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Player; -using Robust.Shared.Random; +//using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Disposal.Unit.EntitySystems; @@ -42,7 +42,7 @@ namespace Content.Server.Disposal.Unit.EntitySystems; public sealed class DisposalUnitSystem : SharedDisposalUnitSystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IRobustRandom _robustRandom = default!; + //[Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly AtmosphereSystem _atmosSystem = default!; @@ -297,20 +297,21 @@ private void OnAfterInteractUsing(EntityUid uid, SharedDisposalUnitComponent com private void OnThrowCollide(EntityUid uid, SharedDisposalUnitComponent component, ThrowHitByEvent args) { var canInsert = CanInsert(uid, component, args.Thrown); - var randDouble = _robustRandom.NextDouble(); + //var randDouble = _robustRandom.NextDouble(); if (!canInsert) { return; } - if (randDouble > 0.75) - { - _audioSystem.PlayPvs(component.MissSound, uid); - - _popupSystem.PopupEntity(Loc.GetString("disposal-unit-thrown-missed"), uid); - return; - } +// WWDP EDIT +// if (randDouble > 0.75) +// { +// _audioSystem.PlayPvs(component.MissSound, uid); +// +// _popupSystem.PopupEntity(Loc.GetString("disposal-unit-thrown-missed"), uid); +// return; +// } var inserted = _containerSystem.Insert(args.Thrown, component.Container);