2024-04-12 16:22:07 -07:00
|
|
|
using System.Linq;
|
2023-04-07 11:21:12 -07:00
|
|
|
using Content.Server.Administration.Logs;
|
2022-08-24 10:50:31 -04:00
|
|
|
using Content.Server.Ensnaring;
|
2023-04-07 11:21:12 -07:00
|
|
|
using Content.Shared.Cuffs;
|
|
|
|
|
using Content.Shared.Cuffs.Components;
|
|
|
|
|
using Content.Shared.Database;
|
|
|
|
|
using Content.Shared.DoAfter;
|
|
|
|
|
using Content.Shared.Ensnaring.Components;
|
2021-12-30 22:56:10 +01:00
|
|
|
using Content.Shared.Hands.Components;
|
2022-05-13 14:59:57 +10:00
|
|
|
using Content.Shared.Hands.EntitySystems;
|
2022-07-10 18:36:53 -07:00
|
|
|
using Content.Shared.IdentityManagement;
|
2022-05-13 14:59:57 +10:00
|
|
|
using Content.Shared.Interaction.Events;
|
2021-12-30 22:56:10 +01:00
|
|
|
using Content.Shared.Inventory;
|
2024-01-14 06:18:47 -04:00
|
|
|
using Content.Shared.Inventory.VirtualItem;
|
2022-05-13 14:59:57 +10:00
|
|
|
using Content.Shared.Popups;
|
2023-04-07 11:21:12 -07:00
|
|
|
using Content.Shared.Strip;
|
2021-12-30 22:56:10 +01:00
|
|
|
using Content.Shared.Strip.Components;
|
2021-10-05 14:29:03 +11:00
|
|
|
using Content.Shared.Verbs;
|
2023-10-29 04:21:02 +11:00
|
|
|
using Robust.Shared.Player;
|
2023-02-26 18:48:57 +11:00
|
|
|
using Robust.Shared.Utility;
|
2021-10-05 14:29:03 +11:00
|
|
|
|
2024-09-27 17:12:10 +10:00
|
|
|
namespace Content.Server.Strip;
|
2022-05-13 14:59:57 +10:00
|
|
|
|
2024-09-27 17:12:10 +10:00
|
|
|
public sealed class StrippableSystem : SharedStrippableSystem
|
|
|
|
|
{
|
2024-03-14 22:57:52 -04:00
|
|
|
|
2021-10-05 14:29:03 +11:00
|
|
|
}
|