| 12345678910111213141516171819202122232425 |
- // SPDX-FileCopyrightText: 2024 Piras314 <p1r4s@proton.me>
- // SPDX-FileCopyrightText: 2024 gluesniffler <159397573+gluesniffler@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
- //
- // SPDX-License-Identifier: AGPL-3.0-or-later
- using Content.Shared.Body.Part;
- using JetBrains.Annotations;
- // Leaving this one in the default namespace because I am afraid to test it
- // in the Shitmed namespace lmao.
- namespace Content.Server.Destructible.Thresholds.Behaviors;
- [UsedImplicitly]
- [DataDefinition]
- public sealed partial class GibPartBehavior : IThresholdBehavior
- {
- public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null)
- {
- if (!system.EntityManager.TryGetComponent(owner, out BodyPartComponent? part))
- return;
- system.BodySystem.GibPart(owner, part);
- }
- }
|