Files
tbd-station-14/Content.Shared/CCVar/CCVars.Chat.Admin.cs
Simon 7867cbec00 Add basic discord client integration with ooc and admin chat support (#33840)
* Add basic discord client integration with ooc and admin chat support

* Use username instead of global name

WHY IS GLOBAL NAME NOT JUST THE USERNAME??? WHY ARE THERE NO DOC COMMENTS???

* stuff

* Reviews, methinks.

* Reviews

* reviews
2025-05-24 20:49:52 +02:00

13 lines
462 B
C#

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