From 03ed3ff37c71458d93aa7f75fae0c6270d1f6394 Mon Sep 17 00:00:00 2001 From: PixelTK <85175107+PixelTheKermit@users.noreply.github.com> Date: Tue, 28 Nov 2023 23:35:42 +0000 Subject: [PATCH] Make TagComponent networked (#21958) --- Content.Shared/Tag/TagComponent.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Tag/TagComponent.cs b/Content.Shared/Tag/TagComponent.cs index abb79be762..b5b8a48a44 100644 --- a/Content.Shared/Tag/TagComponent.cs +++ b/Content.Shared/Tag/TagComponent.cs @@ -1,8 +1,9 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Shared.Tag { - [RegisterComponent, Access(typeof(TagSystem))] + [RegisterComponent, NetworkedComponent, Access(typeof(TagSystem))] public sealed partial class TagComponent : Component { [DataField("tags", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))]