private void OnInhaleLocation(EntityUid uid, InternalsComponent component, InhaleLocationEvent args)
 {
     if (component.AreInternalsWorking())
     {
         var gasTank = Comp <GasTankComponent>(component.GasTankEntity !.Value);
         args.Gas = gasTank.RemoveAirVolume(Atmospherics.BreathVolume);
     }
 }