]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Remove unused includes in Ninja (#41207)
authorConnor Huffine <chuffine@gmail.com>
Fri, 31 Oct 2025 00:03:09 +0000 (20:03 -0400)
committerGitHub <noreply@github.com>
Fri, 31 Oct 2025 00:03:09 +0000 (00:03 +0000)
* Remove Unused

* Additional cleanup

Content.Shared/Ninja/Components/DashAbilityComponent.cs
Content.Shared/Ninja/Components/NinjaSuitComponent.cs
Content.Shared/Ninja/Systems/DashAbilitySystem.cs
Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs
Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs

index de63506f372e819843237eb1b60edd7b27bb534f..800c6a161f559628448f8dbe2c42ccc2965263bd 100644 (file)
@@ -1,7 +1,6 @@
 using Content.Shared.Actions;
 using Content.Shared.Actions.Components;
 using Content.Shared.Ninja.Systems;
-using Robust.Shared.Audio;
 using Robust.Shared.GameStates;
 using Robust.Shared.Prototypes;
 
index b1467b4146952f1da32d4bb00534039208cf7bca..d27578a0430511f2b7f73a1e0f7c4c68ac8b7642 100644 (file)
@@ -3,7 +3,6 @@ using Content.Shared.Ninja.Systems;
 using Robust.Shared.Audio;
 using Robust.Shared.GameStates;
 using Robust.Shared.Prototypes;
-using Robust.Shared.Utility;
 
 namespace Content.Shared.Ninja.Components;
 
index 5646ba2beedf70673005bec88c681008ced766e3..011754be2439a0f7c4961f6a128813c345f0eb91 100644 (file)
@@ -1,17 +1,12 @@
 using Content.Shared.Actions;
-using Content.Shared.Charges.Components;
 using Content.Shared.Charges.Systems;
-using Content.Shared.Hands.Components;
 using Content.Shared.Hands.EntitySystems;
 using Content.Shared.Interaction;
 using Content.Shared.Movement.Pulling.Components;
-using Content.Shared.Movement.Pulling.Events;
 using Content.Shared.Movement.Pulling.Systems;
 using Content.Shared.Ninja.Components;
 using Content.Shared.Popups;
 using Content.Shared.Examine;
-using Robust.Shared.Audio.Systems;
-using Robust.Shared.Timing;
 
 namespace Content.Shared.Ninja.Systems;
 
@@ -21,7 +16,6 @@ namespace Content.Shared.Ninja.Systems;
 public sealed class DashAbilitySystem : EntitySystem
 {
     [Dependency] private readonly ActionContainerSystem _actionContainer = default!;
-    [Dependency] private readonly IGameTiming _timing = default!;
     [Dependency] private readonly SharedChargesSystem _sharedCharges = default!;
     [Dependency] private readonly SharedHandsSystem _hands = default!;
     [Dependency] private readonly ExamineSystemShared _examine = default!;
index d4eb0cbd48f8c4f445781539c65a686fb307d318..52757fc53b6b1ddfd05f871bfd8413b62259e8af 100644 (file)
@@ -1,10 +1,8 @@
 using Content.Shared.Clothing.Components;
 using Content.Shared.CombatMode;
 using Content.Shared.Examine;
-using Content.Shared.Hands.Components;
 using Content.Shared.Hands.EntitySystems;
 using Content.Shared.Interaction;
-using Content.Shared.Inventory.Events;
 using Content.Shared.Item.ItemToggle;
 using Content.Shared.Item.ItemToggle.Components;
 using Content.Shared.Ninja.Components;
@@ -18,7 +16,6 @@ namespace Content.Shared.Ninja.Systems;
 /// </summary>
 public abstract class SharedNinjaGlovesSystem : EntitySystem
 {
-    [Dependency] private readonly IGameTiming _timing = default!;
     [Dependency] private readonly SharedCombatModeSystem _combatMode = default!;
     [Dependency] private readonly SharedHandsSystem _hands = default!;
     [Dependency] private readonly SharedInteractionSystem _interaction = default!;
index e17e2bc893b99315d4847e93a70ae3872a27cfa8..62ddcecb81b5ffd901f9069aaee61589eac03425 100644 (file)
@@ -1,4 +1,3 @@
-using Content.Shared.Clothing.Components;
 using Content.Shared.Ninja.Components;
 using Content.Shared.Weapons.Melee.Events;
 using Content.Shared.Weapons.Ranged.Events;