Files
crystall-punk-14/Content.Server/StationEvents/Events/FalseAlarmRule.cs

29 lines
1011 B
C#
Raw Permalink Normal View History

2023-04-25 20:23:14 -04:00
using System.Linq;
using Content.Server.StationEvents.Components;
using Content.Shared.GameTicking.Components;
2023-04-25 20:23:14 -04:00
using JetBrains.Annotations;
using Robust.Shared.Random;
namespace Content.Server.StationEvents.Events;
[UsedImplicitly]
public sealed class FalseAlarmRule : StationEventSystem<FalseAlarmRuleComponent>
{
[Dependency] private readonly EventManagerSystem _event = default!;
protected override void Started(EntityUid uid, FalseAlarmRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args)
{
if (!TryComp<StationEventComponent>(uid, out var stationEvent))
return;
2023-04-25 20:23:14 -04:00
var allEv = _event.AllEvents().Select(p => p.Value).ToList();
var picked = RobustRandom.Pick(allEv);
stationEvent.StartAnnouncement = picked.StartAnnouncement;
stationEvent.StartAudio = picked.StartAudio;
stationEvent.StartAnnouncementColor = picked.StartAnnouncementColor;
base.Started(uid, component, gameRule, args);
2023-04-25 20:23:14 -04:00
}
}