cargo console radio messages on approving (#27038)

* 1

* void --> "Unknown"
This commit is contained in:
icekot8
2024-04-18 03:32:21 +03:00
committed by GitHub
parent 92089da192
commit fd109d61b8
9 changed files with 37 additions and 6 deletions

View File

@@ -1,6 +1,8 @@
using Content.Shared.Cargo.Prototypes;
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
using Content.Shared.Radio;
using Robust.Shared.Prototypes;
namespace Content.Shared.Cargo.Components;
@@ -21,5 +23,11 @@ public sealed partial class CargoOrderConsoleComponent : Component
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<string> AllowedGroups = new() { "market" };
/// <summary>
/// Radio channel on which order approval announcements are transmitted
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public ProtoId<RadioChannelPrototype> AnnouncementChannel = "Supply";
}