From: PopGamer46 Date: Fri, 1 Nov 2024 02:04:08 +0000 (+0100) Subject: Fixes bolt lights of previously unpowered bolted doors (#33063) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=d708a150e16b79312bc156ab35b38f37887b828a;p=space-station-14.git Fixes bolt lights of previously unpowered bolted doors (#33063) fix --- diff --git a/Content.Server/Doors/Systems/DoorSystem.cs b/Content.Server/Doors/Systems/DoorSystem.cs index 292f8ec8e9..754818619a 100644 --- a/Content.Server/Doors/Systems/DoorSystem.cs +++ b/Content.Server/Doors/Systems/DoorSystem.cs @@ -46,8 +46,8 @@ public sealed class DoorSystem : SharedDoorSystem SetBoltsDown(ent, true); } - UpdateBoltLightStatus(ent); ent.Comp.Powered = args.Powered; Dirty(ent, ent.Comp); + UpdateBoltLightStatus(ent); } }