From: TheFlyingSentry <170261226+TheFlyingSentry@users.noreply.github.com> Date: Wed, 14 Jan 2026 21:19:59 +0000 (-0500) Subject: Fixed Containment Generators not updating pointlight correctly (#42289) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=d857acfc078098dd09b0f28d47c13444161c530e;p=space-station-14.git Fixed Containment Generators not updating pointlight correctly (#42289) oh my god i've been overcomplicating this you don't want to know... --- diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs index 5c6d50ffd3..3c698e11b9 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs @@ -402,6 +402,7 @@ public sealed class ContainmentFieldGeneratorSystem : EntitySystem private void ChangeOnLightVisualizer(Entity generator) { _visualizer.SetData(generator, ContainmentFieldGeneratorVisuals.OnLight, generator.Comp.IsConnected); + UpdateConnectionLights(generator); } #endregion