using Content.Shared.Whitelist; namespace Content.Server.Explosion.Components; /// /// Checks if the user of a Trigger satisfies a whitelist and blacklist condition. /// Cancels the trigger otherwise. /// [RegisterComponent] public sealed partial class TriggerWhitelistComponent : Component { /// /// Whitelist for what entites can cause this trigger. /// [DataField] public EntityWhitelist? Whitelist; /// /// Blacklist for what entites can cause this trigger. /// [DataField] public EntityWhitelist? Blacklist; }