xxxxxxxxxx
Client = new DiscordSocketClient();
Client.SlashCommandExecuted += SlashCommandExecuted;
Client.Ready += Ready;
await Client.LoginAsync(TokenType.Bot, token);
await Client.StartAsync();
Client.BulkOverwriteGlobalApplicationCommandsAsync(commandProps); //WRONG
public async Task Ready()
{
Client.BulkOverwriteGlobalApplicationCommandsAsync(commandProps); //RIGHT
}