From f54852145f0d2cc4b1bd86e1760d086e3ce167a0 Mon Sep 17 00:00:00 2001 From: Schrodinger71 Date: Mon, 17 Jun 2024 23:49:51 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=BB=D1=8F=20=D0=B4=D0=BB=D1=8F=20YAML=20=D1=84?= =?UTF-8?q?=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ADT/AutoPostingChat/AutoPostingChatComponent.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Content.Shared/ADT/AutoPostingChat/AutoPostingChatComponent.cs b/Content.Shared/ADT/AutoPostingChat/AutoPostingChatComponent.cs index 5ba30ab5d6..24dbfbd434 100644 --- a/Content.Shared/ADT/AutoPostingChat/AutoPostingChatComponent.cs +++ b/Content.Shared/ADT/AutoPostingChat/AutoPostingChatComponent.cs @@ -11,26 +11,28 @@ public sealed partial class AutoPostingChatComponent : Component /// Whether this destination is shown in the gateway ui. /// If you are making a gateway for an admeme set this once you are ready for players to select it. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField("randomIntervalSpeak"), ViewVariables(VVAccess.ReadWrite)] public bool RandomIntervalSpeak = false; /// /// Whether this destination is shown in the gateway ui. /// If you are making a gateway for an admeme set this once you are ready for players to select it. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField("randomIntervalEmote"), ViewVariables(VVAccess.ReadWrite)] public bool RandomIntervalEmote = false; /// /// The interval in milliseconds between automatic speech messages. /// [ViewVariables(VVAccess.ReadWrite)] + [DataField("speakTimer")] public int SpeakTimerRead = 8000; /// /// The interval in milliseconds between automatic emote messages. /// [ViewVariables(VVAccess.ReadWrite)] + [DataField("emoteTimer")] public int EmoteTimerRead = 9000; ///