From 3bf3545f64da2fc8a39a4b58414c83b219e73a11 Mon Sep 17 00:00:00 2001 From: Finket Date: Wed, 21 Feb 2024 15:25:33 +0200 Subject: [PATCH] Fix missing imports --- .../Shadowkin/Systems/ShadowkinPowerSystem.DarkSwapped.cs | 3 +-- .../Species/Shadowkin/Systems/ShadowkinSystem.Tint.cs | 2 +- .../Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs | 3 +-- .../Species/Shadowkin/Systems/ShadowkinPowerSystem.Teleport.cs | 1 + 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwapped.cs b/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwapped.cs index 67ea8f91fb..00cdbb07ce 100644 --- a/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwapped.cs +++ b/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwapped.cs @@ -1,10 +1,9 @@ using Robust.Client.Graphics; using Robust.Client.Player; -using Content.Client.SimpleStation14.Overlays; using Content.Client.SimpleStation14.Overlays.Shaders; using Content.Shared.SimpleStation14.Species.Shadowkin.Components; -using Robust.Client.GameObjects; using Content.Shared.Humanoid; +using Robust.Shared.Player; namespace Content.Client.SimpleStation14.Species.Shadowkin.Systems; diff --git a/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinSystem.Tint.cs b/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinSystem.Tint.cs index 20d92ae4e6..57b0b93190 100644 --- a/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinSystem.Tint.cs +++ b/Content.Client/SimpleStation14/Species/Shadowkin/Systems/ShadowkinSystem.Tint.cs @@ -1,11 +1,11 @@ using Robust.Client.Graphics; using Robust.Client.Player; -using Content.Client.SimpleStation14.Overlays; using Content.Client.SimpleStation14.Overlays.Shaders; using Content.Shared.SimpleStation14.Species.Shadowkin.Components; using Robust.Client.GameObjects; using Content.Shared.GameTicking; using Content.Shared.Humanoid; +using Robust.Shared.Player; namespace Content.Client.SimpleStation14.Species.Shadowkin.Systems; diff --git a/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs b/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs index 8522a1bfec..83747fe12f 100644 --- a/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs +++ b/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs @@ -15,7 +15,7 @@ using Content.Shared.Stealth.Components; using Robust.Server.GameObjects; using Robust.Shared.Audio; -using Robust.Shared.Prototypes; +using Robust.Shared.Audio.Systems; namespace Content.Server.SimpleStation14.Species.Shadowkin.Systems; @@ -30,7 +30,6 @@ public sealed class ShadowkinDarkSwapSystem : EntitySystem [Dependency] private readonly SharedStealthSystem _stealth = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly MagicSystem _magic = default!; [Dependency] private readonly NpcFactionSystem _factions = default!; diff --git a/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.Teleport.cs b/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.Teleport.cs index 60d59e4528..83e38ef11e 100644 --- a/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.Teleport.cs +++ b/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.Teleport.cs @@ -8,6 +8,7 @@ using Content.Shared.Pulling.Components; using Content.Shared.SimpleStation14.Species.Shadowkin.Components; using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; namespace Content.Server.SimpleStation14.Species.Shadowkin.Systems;