diff --git a/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs b/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs index e8344cd127..bbb1f4907d 100644 --- a/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs +++ b/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs @@ -12,7 +12,6 @@ namespace Content.Client.Administration.UI [GenerateTypedNameReferences] public partial class AdminAnnounceWindow : SS14Window { - [Dependency] private readonly IGameHud? _gameHud = default!; [Dependency] private readonly ILocalizationManager _localization = default!; public Button AnnounceButton => _announceButton; public OptionButton AnnounceMethod => _announceMethod; diff --git a/Content.Server/Actions/Actions/DisarmAction.cs b/Content.Server/Actions/Actions/DisarmAction.cs index 53624bfca3..45c16412d6 100644 --- a/Content.Server/Actions/Actions/DisarmAction.cs +++ b/Content.Server/Actions/Actions/DisarmAction.cs @@ -68,7 +68,6 @@ namespace Content.Server.Actions.Actions if (args.Target == args.Performer || !EntitySystem.Get().CanAttack(args.Performer)) return; var random = IoCManager.Resolve(); - var audio = EntitySystem.Get(); var system = EntitySystem.Get(); var diff = args.Target.Transform.MapPosition.Position - args.Performer.Transform.MapPosition.Position; diff --git a/Content.Server/Interaction/InteractionSystem.cs b/Content.Server/Interaction/InteractionSystem.cs index bdd9509f7c..ea8eaf19b8 100644 --- a/Content.Server/Interaction/InteractionSystem.cs +++ b/Content.Server/Interaction/InteractionSystem.cs @@ -42,9 +42,7 @@ namespace Content.Server.Interaction public sealed class InteractionSystem : SharedInteractionSystem { [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; - [Dependency] private readonly VerbSystem _verbSystem = default!; [Dependency] private readonly PullingSystem _pullSystem = default!; public override void Initialize() diff --git a/Content.Server/Stunnable/StunOnCollideSystem.cs b/Content.Server/Stunnable/StunOnCollideSystem.cs index 4c34f1b32d..4f2f85b046 100644 --- a/Content.Server/Stunnable/StunOnCollideSystem.cs +++ b/Content.Server/Stunnable/StunOnCollideSystem.cs @@ -18,7 +18,6 @@ namespace Content.Server.Stunnable internal sealed class StunOnCollideSystem : EntitySystem { [Dependency] private readonly StunSystem _stunSystem = default!; - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; public override void Initialize() { diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 3f04ead521..6054f101c8 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -27,7 +27,6 @@ namespace Content.Shared.Stunnable { [Dependency] private readonly StandingStateSystem _standingStateSystem = default!; [Dependency] private readonly StatusEffectsSystem _statusEffectSystem = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; public override void Initialize() {