We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d448f51 commit efa3d60Copy full SHA for efa3d60
DiscordBotConfig.cs
@@ -43,7 +43,7 @@ public class DiscordBotConfig
43
/// <summary>Whether to allow direct messages (if not, only guild messages are allowed).</summary>
44
public bool AllowDMs = false;
45
46
- /// <summary>What gateway intents to connect with. Defaults to 'AllUnprivileged | GuildMessages'.</summary>
47
- public GatewayIntents GatewayIntents = GatewayIntents.AllUnprivileged | GatewayIntents.GuildMessages;
+ /// <summary>What gateway intents to connect with. Defaults to 'AllUnprivileged | GuildMessages | GuildMessageReactions'.</summary>
+ public GatewayIntents GatewayIntents = GatewayIntents.AllUnprivileged | GatewayIntents.GuildMessages | GatewayIntents.GuildMessageReactions;
48
}
49
0 commit comments