Files
crystall-punk-14/Content.Server/Flash/Components/FlashImmunityComponent.cs
Vera Aguilera Puerto c5f7c61041 Fix some friend access violations by allowing others access. (#8594)
Rename Friend attribute to Access attribute.
Updates submodule to v0.21.0.0 as well.
2022-06-07 11:30:27 +02:00

11 lines
295 B
C#

namespace Content.Server.Flash.Components
{
[RegisterComponent, Access(typeof(FlashSystem))]
public sealed class FlashImmunityComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("enabled")]
public bool Enabled { get; set; } = true;
}
}