Files
tbd-station-14/Content.Server/Body/Systems/InternalsSystem.cs
2022-05-13 17:59:03 +10:00

25 lines
710 B
C#

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<InternalsComponent, InhaleLocationEvent>(OnInhaleLocation);
}
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);
}
}
}