Files
wwdpublic/Content.Shared/_Goobstation/Traits/Assorted/LegsStartParalyzedComponent.cs
Will Oliver 1697d49f3c fix
(cherry picked from commit d743c3bd0e82acfaad0aed2faa992772ea5fdc17)
2025-03-29 18:15:06 +03:00

13 lines
388 B
C#

using Content.Shared.Traits.Assorted.Systems;
using Robust.Shared.GameStates;
namespace Content.Shared.Traits.Assorted.Components;
/// <summary>
/// Iterate through all the legs on the entity and make them paralyzed.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(LegsStartParalyzedSystem))]
public sealed partial class LegsStartParalyzedComponent : Component
{
}