namespace Content.Server.Nutrition; /// /// Raised directed at the consumer when attempting to ingest something. /// public sealed class IngestionAttemptEvent : CancellableEntityEventArgs { /// /// The equipment that is blocking consumption. Should only be non-null if the event was canceled. /// public EntityUid? Blocker = null; }