From 0f4ff48e98eacb7ce709655aa52e1b98e12d2983 Mon Sep 17 00:00:00 2001 From: Alzore <140123969+Blackern5000@users.noreply.github.com> Date: Wed, 17 Apr 2024 04:44:54 -0500 Subject: [PATCH] Make PagerRecieverComponent able to be vv-ed (#298) * I just copy and pasted I don't know what I'm doing * nomorevv * wrong character --- Content.Server/_FTL/Pager/PagerReceiverComponent.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Content.Server/_FTL/Pager/PagerReceiverComponent.cs b/Content.Server/_FTL/Pager/PagerReceiverComponent.cs index f233cd336e..212409b003 100644 --- a/Content.Server/_FTL/Pager/PagerReceiverComponent.cs +++ b/Content.Server/_FTL/Pager/PagerReceiverComponent.cs @@ -5,17 +5,18 @@ namespace Content.Server._FTL.Pager; [RegisterComponent] public sealed partial class PagerReceiverComponent : Component { - [DataField] + [DataField, ViewVariables] public bool Paged; - [DataField] + [DataField, ViewVariables] public string PagerMessage = ""; - [DataField] + [DataField, ViewVariables] public SoundSpecifier PagingSound = new SoundPathSpecifier("/Audio/_FTL/Effects/Pagers/pager_beep.ogg"); - [DataField] + [DataField, ViewVariables] public SoundSpecifier BeepSound = new SoundPathSpecifier("/Audio/_FTL/Machines/beep.ogg"); + [DataField] public EntityUid? PlayingStream; }