diff --git a/Content.Shared/Animal/UdderComponent.cs b/Content.Shared/Animal/UdderComponent.cs index 371c380f22b8..5ae62acd39b1 100644 --- a/Content.Shared/Animal/UdderComponent.cs +++ b/Content.Shared/Animal/UdderComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; namespace Content.Shared.Animals; @@ -9,7 +10,7 @@ namespace Content.Shared.Animals; /// Gives the ability to produce a solution; /// produces endlessly if the owner does not have a HungerComponent. /// -[RegisterComponent, AutoGenerateComponentPause] +[RegisterComponent, AutoGenerateComponentPause, NetworkedComponent] public sealed partial class UdderComponent : Component { /// diff --git a/Content.Shared/Animal/WoolyComponent.cs b/Content.Shared/Animal/WoolyComponent.cs index 1cdfed96572c..edbf159d465b 100644 --- a/Content.Shared/Animal/WoolyComponent.cs +++ b/Content.Shared/Animal/WoolyComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; namespace Content.Shared.Animals; @@ -9,7 +10,7 @@ namespace Content.Shared.Animals; /// Gives the ability to produce wool fibers; /// produces endlessly if the owner does not have a HungerComponent. /// -[RegisterComponent, Access(typeof(WoolySystem)), AutoGenerateComponentPause] +[RegisterComponent, Access(typeof(WoolySystem)), AutoGenerateComponentPause, NetworkedComponent] public sealed partial class WoolyComponent : Component { ///