Files
tbd-station-14/Content.Shared/Preferences/PreferenceUnavailableMode.cs
2021-07-16 17:37:09 -07:00

22 lines
597 B
C#

namespace Content.Shared.Preferences
{
/// <summary>
/// Specifies behavior when none of the jobs you want are available at round start.
/// </summary>
public enum PreferenceUnavailableMode
{
// These enum values HAVE to match the ones in DbPreferenceUnavailableMode in Server.Database.
/// <summary>
/// Stay in the lobby (if the lobby is enabled).
/// </summary>
StayInLobby = 0,
/// <summary>
/// Spawn as overflow role if preference unavailable.
/// </summary>
SpawnAsOverflow,
}
}