From a09e47e857dc961d7fccc12836e7333eed655824 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Fri, 27 Jun 2025 15:18:27 -0400 Subject: [PATCH] Fix vocalization emotes (#38627) --- Content.Shared/Speech/Components/VocalComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Speech/Components/VocalComponent.cs b/Content.Shared/Speech/Components/VocalComponent.cs index 0f62a39d45..3a32a54bb3 100644 --- a/Content.Shared/Speech/Components/VocalComponent.cs +++ b/Content.Shared/Speech/Components/VocalComponent.cs @@ -19,9 +19,9 @@ public sealed partial class VocalComponent : Component /// Emote sounds prototype id for each sex (not gender). /// Entities without considered to be . /// - [DataField("sounds", customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer))] + [DataField] [AutoNetworkedField] - public Dictionary? Sounds; + public Dictionary>? Sounds; [DataField("screamId", customTypeSerializer: typeof(PrototypeIdSerializer))] [AutoNetworkedField] -- 2.51.2