From c8ca4f3fbc37f7817fd4db447bd45293f80b988b Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 8 Feb 2021 22:52:52 +0100 Subject: [PATCH] Blame Rider for it that always works. --- Content.Shared/Prototypes/Tag/TagPrototype.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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", ""); }