Sleeper agents event no longer occurs when evacuation is called (#30646)

no more evac sleeper agents
This commit is contained in:
Killerqu00
2024-08-05 05:17:53 +02:00
committed by GitHub
parent c5b887fb4e
commit 6503cb7833
3 changed files with 14 additions and 0 deletions

View File

@@ -81,4 +81,10 @@ public sealed partial class StationEventComponent : Component
[DataField("endTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
[AutoPausedField]
public TimeSpan? EndTime;
/// <summary>
/// If false, the event won't trigger during ongoing evacuation.
/// </summary>
[DataField]
public bool OccursDuringRoundEnd = true;
}