From 1cc21d9d362fba582cd1ef4daa8b86780b528349 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Fri, 13 Feb 2026 00:47:13 -0800 Subject: [PATCH] Fix Flares dying after 10 seconds. (#42765) asdas Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Content.Client/Light/EntitySystems/LightBehaviorSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Light/EntitySystems/LightBehaviorSystem.cs b/Content.Client/Light/EntitySystems/LightBehaviorSystem.cs index b91062b60b4..3e5c1dc0695 100644 --- a/Content.Client/Light/EntitySystems/LightBehaviorSystem.cs +++ b/Content.Client/Light/EntitySystems/LightBehaviorSystem.cs @@ -40,7 +40,7 @@ public sealed class LightBehaviorSystem : EntitySystem } else { - StopLightBehaviour((uid, component), container.LightBehaviour.ID, resetToOriginalSettings: true); + StopLightBehaviour((uid, component), container.LightBehaviour.ID); } }