From: Red <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 6 Aug 2025 11:02:14 +0000 (+0300) Subject: Status effects disable light occluding (1-line PR) (#39418) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=5181219f89711c30e9c3f6f688e1ae6ab125fcdc;p=space-station-14.git Status effects disable light occluding (1-line PR) (#39418) Update StatusEffectsSystem.cs --- diff --git a/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs b/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs index 7f8eef5102..f1edcfe819 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs @@ -69,6 +69,7 @@ public sealed partial class StatusEffectsSystem : EntitySystem _container.EnsureContainer(ent, StatusEffectContainerComponent.ContainerId); // We show the contents of the container to allow status effects to have visible sprites. ent.Comp.ActiveStatusEffects.ShowContents = true; + ent.Comp.ActiveStatusEffects.OccludesLight = false; } private void OnStatusContainerShutdown(Entity ent, ref ComponentShutdown args)