&& xformQuery.TryGetComponent(uid, out var xform)
&& appearanceQuery.TryGetComponent(uid, out var appearance))
{
- var (fire, pressure) = CheckPressureAndFire(uid, firelock, xform, airtight, airtightQuery);
+ var (pressure, fire) = CheckPressureAndFire(uid, firelock, xform, airtight, airtightQuery);
_appearance.SetData(uid, DoorVisuals.ClosedLights, fire || pressure, appearance);
firelock.Temperature = fire;
firelock.Pressure = pressure;
using Content.Shared.Access.Systems;
using Content.Shared.Doors.Components;
+using Content.Shared.Examine;
using Content.Shared.Popups;
using Content.Shared.Prying.Components;
using Robust.Shared.Timing;
// Visuals
SubscribeLocalEvent<FirelockComponent, MapInitEvent>(UpdateVisuals);
SubscribeLocalEvent<FirelockComponent, ComponentStartup>(UpdateVisuals);
+
+ SubscribeLocalEvent<FirelockComponent, ExaminedEvent>(OnExamined);
}
public bool EmergencyPressureStop(EntityUid uid, FirelockComponent? firelock = null, DoorComponent? door = null)
}
#endregion
+
+ private void OnExamined(Entity<FirelockComponent> ent, ref ExaminedEvent args)
+ {
+ using (args.PushGroup(nameof(FirelockComponent)))
+ {
+ if (ent.Comp.Pressure)
+ args.PushMarkup(Loc.GetString("firelock-component-examine-pressure-warning"));
+ if (ent.Comp.Temperature)
+ args.PushMarkup(Loc.GetString("firelock-component-examine-temperature-warning"));
+ }
+ }
}
firelock-component-is-holding-pressure-message = A gush of air blows in your face... Maybe you should reconsider.
-firelock-component-is-holding-fire-message = A gush of warm air blows in your face... Maybe you should reconsider.
\ No newline at end of file
+firelock-component-is-holding-fire-message = A gush of warm air blows in your face... Maybe you should reconsider.
+firelock-component-examine-pressure-warning = The [color=red]extreme pressure[/color] differential warning is active.
+firelock-component-examine-temperature-warning = The [color=red]extreme temperature[/color] warning is active.