From 786c0ed97c2c8a3ac50de5a8f4006aae2a7cbb82 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 3 Jul 2024 15:17:46 +0300 Subject: [PATCH] Update CP14CloudShadowsComponent.cs --- Content.Shared/_CP14/DayCycle/CP14CloudShadowsComponent.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/_CP14/DayCycle/CP14CloudShadowsComponent.cs b/Content.Shared/_CP14/DayCycle/CP14CloudShadowsComponent.cs index 7502016caf..790a8828b2 100644 --- a/Content.Shared/_CP14/DayCycle/CP14CloudShadowsComponent.cs +++ b/Content.Shared/_CP14/DayCycle/CP14CloudShadowsComponent.cs @@ -6,12 +6,12 @@ namespace Content.Shared._CP14.DayCycle; /// /// if added to the map, renders cloud shadows on the map /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class CP14CloudShadowsComponent : Component { - [DataField] + [DataField, AutoNetworkedField] public Vector2 CloudSpeed = new Vector2(0.5f, 0f); - [DataField] + [DataField, AutoNetworkedField] public float Alpha = 1f; }