From: PixelTK <85175107+PixelTheKermit@users.noreply.github.com> Date: Tue, 28 Nov 2023 23:35:42 +0000 (+0000) Subject: Make TagComponent networked (#21958) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=03ed3ff37c71458d93aa7f75fae0c6270d1f6394;p=space-station-14.git Make TagComponent networked (#21958) --- 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))]