diff --git a/Content.Shared/Prototypes/Tag/TagPrototype.cs b/Content.Shared/Prototypes/Tag/TagPrototype.cs index 104b3c4b37..c45e994af3 100644 --- a/Content.Shared/Prototypes/Tag/TagPrototype.cs +++ b/Content.Shared/Prototypes/Tag/TagPrototype.cs @@ -13,11 +13,11 @@ namespace Content.Shared.Prototypes.Tag /// gets saved in TagComponent. /// [Prototype("Tag")] - public class TagPrototype : IPrototype, IIndexedPrototype, IExposeData + public class TagPrototype : IPrototype, IIndexedPrototype { public string ID { get; [UsedImplicitly] private set; } = default!; - void IExposeData.ExposeData(ObjectSerializer serializer) + private void ExposeData(ObjectSerializer serializer) { serializer.DataField(this, x => x.ID, "id", ""); }