mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
19 lines
479 B
C#
19 lines
479 B
C#
using Content.Client.Light.Components;
|
|
|
|
namespace Content.Client.Light.EntitySystems;
|
|
|
|
public sealed class ExpendableLightSystem : EntitySystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<ExpendableLightComponent, ComponentShutdown>(OnLightShutdown);
|
|
}
|
|
|
|
private void OnLightShutdown(EntityUid uid, ExpendableLightComponent component, ComponentShutdown args)
|
|
{
|
|
component.PlayingStream?.Stop();
|
|
}
|
|
}
|