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