Skip to content

Commit

Permalink
Make PagerRecieverComponent able to be vv-ed (#298)
Browse files Browse the repository at this point in the history
* I just copy and pasted I don't know what I'm doing

* nomorevv

* wrong character
  • Loading branch information
Blackern5000 authored Apr 17, 2024
1 parent 707bd68 commit 0f4ff48
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Content.Server/_FTL/Pager/PagerReceiverComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 0f4ff48

Please sign in to comment.