Files
wwdpublic/Content.Server/Flash/Components/FlashImmunityComponent.cs
2025-07-12 14:26:42 +10:00

13 lines
363 B
C#

namespace Content.Server.Flash.Components;
/// <summary>
/// Makes the entity immune to being flashed.
/// When given to clothes in the "head", "eyes" or "mask" slot it protects the wearer.
/// </summary>
[RegisterComponent]
public sealed partial class FlashImmunityComponent : Component
{
[DataField]
public bool Enabled { get; set; } = true;
}