using Content.Server.StationEvents.Events; namespace Content.Server.StationEvents.Components; /// /// This is a station event that randomly removes some records from the station record database. /// [RegisterComponent] [Access(typeof(ClericalErrorRule))] public sealed partial class ClericalErrorRuleComponent : Component { /// /// The minimum percentage number of records to remove from the station. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public float MinToRemove = 0.0025f; /// /// The maximum percentage number of records to remove from the station. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public float MaxToRemove = 0.1f; }