Skip to content

Commit

Permalink
remove unused usings
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed Jun 10, 2024
1 parent 90ba45b commit 30d319f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 20 deletions.
13 changes: 0 additions & 13 deletions Content.Server/Arachne/ArachneSystem.cs
Original file line number Diff line number Diff line change
@@ -1,31 +1,24 @@
using Content.Shared.Arachne;
using Content.Shared.Actions;
using Content.Shared.Actions.Events;
using Content.Shared.Coordinates.Helpers;
using Content.Shared.IdentityManagement;
using Content.Shared.Verbs;
using Content.Shared.Buckle.Components;
using Content.Shared.Maps;
using Content.Shared.DoAfter;
using Content.Shared.Physics;
using Content.Shared.Stunnable;
using Content.Shared.Eye.Blinding.Systems;
using Content.Shared.Doors.Components;
using Content.Shared.Containers.ItemSlots;
using Content.Shared.Damage;
using Content.Shared.Inventory;
using Content.Shared.Administration.Logs;
using Content.Shared.Database;
using Content.Shared.Humanoid;
using Content.Shared.Nutrition.Components;
using Content.Shared.Nutrition.EntitySystems;
using Content.Server.Buckle.Systems;
using Content.Server.Popups;
using Content.Server.DoAfter;
using Content.Server.Body.Components;
using Content.Server.Vampiric;
using Content.Server.Speech.Components;
using Robust.Shared.Prototypes;
using Robust.Shared.Physics.Components;
using Robust.Shared.Containers;
using Robust.Shared.Map;
Expand All @@ -36,11 +29,7 @@ namespace Content.Server.Arachne
{
public sealed class ArachneSystem : EntitySystem
{
[Dependency] private readonly SharedActionsSystem _actions = default!;
[Dependency] private readonly HungerSystem _hungerSystem = default!;
[Dependency] private readonly ThirstSystem _thirstSystem = default!;
[Dependency] private readonly PopupSystem _popupSystem = default!;
[Dependency] private readonly IMapManager _mapManager = default!;
[Dependency] private readonly DoAfterSystem _doAfter = default!;
[Dependency] private readonly BuckleSystem _buckleSystem = default!;
[Dependency] private readonly ItemSlotsSystem _itemSlots = default!;
Expand All @@ -49,9 +38,7 @@ public sealed class ArachneSystem : EntitySystem

[Dependency] private readonly IServerConsoleHost _host = default!;
[Dependency] private readonly BloodSuckerSystem _bloodSuckerSystem = default!;
[Dependency] private readonly InventorySystem _inventorySystem = default!;
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
[Dependency] private readonly SharedContainerSystem _containerSystem = default!;

private const string BodySlot = "body_slot";

Expand Down
2 changes: 0 additions & 2 deletions Content.Server/Vampire/BloodSuckerSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
using Content.Server.DoAfter;
using Content.Server.Nutrition.Components;
using Robust.Shared.Prototypes;
using Robust.Shared.Player;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Utility;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Content.Server.Popups;
using Content.Shared.Interaction;
using Robust.Shared.Player;

namespace Content.Server.Vampiric
{
Expand Down
3 changes: 0 additions & 3 deletions Content.Shared/Arachne/ArachneComponent.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using Robust.Shared.GameStates;
using Robust.Shared.Serialization;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;

namespace Content.Shared.Arachne
{
Expand Down
1 change: 0 additions & 1 deletion Content.Shared/Arachne/WebComponent.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Robust.Shared.GameStates;
using Robust.Shared.Serialization;

namespace Content.Shared.Arachne
{
Expand Down

0 comments on commit 30d319f

Please sign in to comment.