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; }