using Content.Server.Atmos.Piping.Unary.EntitySystems; namespace Content.Server.Destructible.Thresholds.Behaviors { [Serializable] [DataDefinition] public sealed class DumpCanisterBehavior : IThresholdBehavior { public void Execute(EntityUid owner, DestructibleSystem system) { system.EntityManager.EntitySysManager.GetEntitySystem().PurgeContents(owner); } } }