patch (database & slash commands)

This commit is contained in:
2022-11-02 15:35:18 +02:00
parent 11ec02ef68
commit e5f3aff39a
15 changed files with 240 additions and 204 deletions

View File

@@ -60,7 +60,14 @@ internal class Boot
/// <returns>Task</returns>
public async Task Awake()
{
var config = new DiscordSocketConfig { AlwaysDownloadUsers = true };
var config = new DiscordSocketConfig
{
AlwaysDownloadUsers = true,
//Disable system clock checkup (for responses at slash commands)
UseInteractionSnowflakeDate = false
};
client = new DiscordSocketClient(config);
service = new CommandService();