CreateGlobalApplicationCommandAsync不构建斜杠命令



我有一个discord.net bot试图制作斜杠命令,但是当我运行bot时全局命令不添加,我知道注册需要一段时间,但自从上次注册新命令以来已经2天了

我试着:

_SlashCommandBuilder = new SlashCommandBuilder();
_SlashCommandBuilder.WithName("greet");

我期望:为了添加构建,我也做了await _DiscordClient.CreateGlobalApplicationCommandAsync(_SlashCommandBuilder.Build());

原来我需要使用.AddOption.AddDescription才能正确工作,现在一切似乎都工作了。

相关内容

  • 没有找到相关文章

最新更新