Files
tbd-station-14/Content.Server/Nuke/NukeCodePaperComponent.cs
Nemanja 930d097616 NukeOps start with either station codes or their codes (#14025)
* NukeOps start with all nuke codes

* make it pick a random code

* clarify this
2023-03-26 11:58:57 -05:00

19 lines
575 B
C#

namespace Content.Server.Nuke
{
/// <summary>
/// Paper with a written nuclear code in it.
/// Can be used in mapping or admins spawn.
/// </summary>
[RegisterComponent]
public sealed class NukeCodePaperComponent : Component
{
/// <summary>
/// Whether or not paper will contain a code for a nuke on the same
/// station as the paper, or if it will get a random code from all
/// possible nukes.
/// </summary>
[DataField("allNukesAvailable")]
public bool AllNukesAvailable;
}
}