From 6022f8899743a0de3259a54cbe52766b54a487d4 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Sat, 13 May 2023 11:29:44 -0400 Subject: [PATCH] ask for *all* permission --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index 0a31858..29c8137 100644 --- a/Program.cs +++ b/Program.cs @@ -1,4 +1,4 @@ -//https://discord.com/oauth2/authorize?client_id=913003037348491264&permissions=274877942784&scope=bot%20messages.read +//https://discord.com/oauth2/authorize?client_id=913003037348491264&permissions=274877942784&scope=bot%20messages.read using System; using System.Collections.Generic; using System.IO; @@ -50,7 +50,7 @@ namespace silverworker_discord #endif Conversion.Converter.Load(config["exchangePairsLocation"]); - _client = new DiscordSocketClient(); + _client = new DiscordSocketClient(new DiscordSocketConfig(){GatewayIntents = GatewayIntents.All}); _client.Log += Log;