Files
OldThink/Content.Shared/_White/Collision/KnockdownOnCollideComponent.cs

12 lines
326 B
C#
Raw Permalink Normal View History

using Content.Shared.Standing.Systems;
namespace Content.Shared._White.Collision;
[RegisterComponent]
public sealed partial class KnockdownOnCollideComponent : Component
{
[DataField]
public SharedStandingStateSystem.DropHeldItemsBehavior Behavior =
SharedStandingStateSystem.DropHeldItemsBehavior.NoDrop;
}