Skip to content

Commit

Permalink
forgot NetworkedComponent again...
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirionaut committed Jun 27, 2024
1 parent 0f5aaf2 commit e10c506
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Content.Shared/Animal/UdderComponent.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -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.
/// </summary>
[RegisterComponent, AutoGenerateComponentPause]
[RegisterComponent, AutoGenerateComponentPause, NetworkedComponent]
public sealed partial class UdderComponent : Component
{
/// <summary>
Expand Down
3 changes: 2 additions & 1 deletion Content.Shared/Animal/WoolyComponent.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -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.
/// </summary>
[RegisterComponent, Access(typeof(WoolySystem)), AutoGenerateComponentPause]
[RegisterComponent, Access(typeof(WoolySystem)), AutoGenerateComponentPause, NetworkedComponent]
public sealed partial class WoolyComponent : Component
{
/// <summary>
Expand Down

0 comments on commit e10c506

Please sign in to comment.