diff --git a/Content.Shared/Decals/DecalGridComponent.cs b/Content.Shared/Decals/DecalGridComponent.cs index 1c64699b25..c4ea6cdc1d 100644 --- a/Content.Shared/Decals/DecalGridComponent.cs +++ b/Content.Shared/Decals/DecalGridComponent.cs @@ -1,5 +1,6 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Generic; using Robust.Shared.Timing; using Robust.Shared.Utility; using static Content.Shared.Decals.DecalGridComponent; @@ -23,7 +24,7 @@ namespace Content.Shared.Decals [Serializable, NetSerializable] public sealed class DecalChunk { - [DataField("decals")] + [IncludeDataField(customTypeSerializer:typeof(DictionarySerializer))] public Dictionary Decals; [NonSerialized]