1
0

CCCVars.Chat.Admin.cs 459 B

123456789101112
  1. using Robust.Shared.Configuration;
  2. namespace Content.Shared.CCVar;
  3. public sealed partial class CCVars
  4. {
  5. /// <summary>
  6. /// The discord channel ID to send admin chat messages to (also receive them). This requires the Discord Integration to be enabled and configured.
  7. /// </summary>
  8. public static readonly CVarDef<string> AdminChatDiscordChannelId =
  9. CVarDef.Create("admin.chat_discord_channel_id", string.Empty, CVar.SERVERONLY);
  10. }