* Auth setup * fixes * messages * adapt to new auth * cvar fix * generating link setup * new version adapt * fix * Update DiscordAuthManager.cs
10 lines
238 B
C#
10 lines
238 B
C#
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Shared.CCVar;
|
|
|
|
public sealed partial class CCVars
|
|
{
|
|
public static readonly CVarDef<bool> QueueEnabled =
|
|
CVarDef.Create("cp14.join_queue_enabled", true, CVar.SERVERONLY);
|
|
}
|