From 9874ce5f480b3444fa967f64cd4fa25ab5d0c9f5 Mon Sep 17 00:00:00 2001 From: Morb <14136326+Morb0@users.noreply.github.com> Date: Sat, 21 Jan 2023 19:33:11 +0300 Subject: [PATCH] Update bolt light after bolts fall (#13636) --- Content.Server/Doors/Systems/AirlockSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Doors/Systems/AirlockSystem.cs b/Content.Server/Doors/Systems/AirlockSystem.cs index e6f4d0f0ce..e39f5bd9c2 100644 --- a/Content.Server/Doors/Systems/AirlockSystem.cs +++ b/Content.Server/Doors/Systems/AirlockSystem.cs @@ -202,6 +202,7 @@ namespace Content.Server.Doors.Systems component.BoltsDown = newBolts; Audio.PlayPvs(newBolts ? component.BoltDownSound : component.BoltUpSound, uid); + UpdateBoltLightStatus(uid, component); } public bool GetBoltLightsVisible(EntityUid uid, AirlockComponent component)