From 4dc956da05e455806459d99d5ade658bae16ebb8 Mon Sep 17 00:00:00 2001 From: KashRas2 Date: Sat, 7 Sep 2024 21:03:45 +0300 Subject: [PATCH] epic tts failure fix --- Content.Shared/Corvax/TTS/TTSVoicePrototype.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Shared/Corvax/TTS/TTSVoicePrototype.cs b/Content.Shared/Corvax/TTS/TTSVoicePrototype.cs index ed746c3d50e..5e4c51eef6a 100644 --- a/Content.Shared/Corvax/TTS/TTSVoicePrototype.cs +++ b/Content.Shared/Corvax/TTS/TTSVoicePrototype.cs @@ -16,6 +16,9 @@ public sealed class TTSVoicePrototype : IPrototype [DataField("name")] public string Name { get; } = string.Empty; + [DataField("description")] + public string Description { get; } = string.Empty; + [DataField("sex", required: true)] public Sex Sex { get; } = default!;