using Content.Server.Atmos.Components; using Content.Server.Body.Components; using Content.Shared.Atmos; namespace Content.Server.Body.Systems; public sealed class InternalsSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInhaleLocation); } private void OnInhaleLocation(EntityUid uid, InternalsComponent component, InhaleLocationEvent args) { if (component.AreInternalsWorking()) { var gasTank = Comp(component.GasTankEntity!.Value); args.Gas = gasTank.RemoveAirVolume(Atmospherics.BreathVolume); } } }