mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-05-06 22:16:29 +03:00
Async command handling
This commit is contained in:
parent
51c24c1e23
commit
53f13d88a5
7 changed files with 54 additions and 40 deletions
|
@ -12,11 +12,15 @@ public static class Boyfriend {
|
|||
|
||||
private static readonly DiscordSocketConfig Config = new() {
|
||||
MessageCacheSize = 250,
|
||||
GatewayIntents = GatewayIntents.All
|
||||
GatewayIntents = GatewayIntents.All,
|
||||
AlwaysDownloadUsers = true,
|
||||
AlwaysResolveStickers = false,
|
||||
AlwaysDownloadDefaultStickers = false,
|
||||
LargeThreshold = 500
|
||||
};
|
||||
|
||||
public static readonly DiscordSocketClient Client = new(Config);
|
||||
private static readonly Game Activity = new("Retrospecter - Genocide", ActivityType.Listening);
|
||||
private static readonly Game Activity = new("Toby Fox - The World Revolving", ActivityType.Listening);
|
||||
|
||||
private static readonly Dictionary<ulong, Dictionary<string, string>> GuildConfigDictionary = new();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue