diff --git a/Content.Shared/PDA/UplinkStoreListingPrototype.cs b/Content.Shared/PDA/UplinkStoreListingPrototype.cs index ddb59957db..b03a1855be 100644 --- a/Content.Shared/PDA/UplinkStoreListingPrototype.cs +++ b/Content.Shared/PDA/UplinkStoreListingPrototype.cs @@ -1,5 +1,6 @@ using Robust.Shared.Prototypes; using Robust.Shared.Serialization.Manager.Attributes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; using Robust.Shared.ViewVariables; @@ -12,7 +13,7 @@ namespace Content.Shared.PDA [DataField("id", required: true)] public string ID { get; } = default!; - [DataField("itemId")] + [DataField("itemId", customTypeSerializer:typeof(PrototypeIdSerializer))] public string ItemId { get; } = string.Empty; [DataField("price")]