我正在尝试使用组设置一些嵌套的命令,但是父组的命令似乎具有优先权。
这是我的代码示例。
[Group("foo"), Summary("Testing foo")]
public class TestModule : ModuleBase<SocketCommandContext>
{
[Group("bar"), Summary("Testing bar")]
public class TestModTwo : ModuleBase<SocketCommandContext>
{
[Command, Summary("bar default command")]
public async Task Test()
{
await Context.Channel.SendMessageAsync("bar default command");
}
}
[Command, Summary("foo default command")]
public async Task Test()
{
await Context.Channel.SendMessageAsync("foo default command");
}
[Command, Summary("foo default command with string")]
public async Task Test(string User)
{
await Context.Channel.SendMessageAsync("foo default command with string");
}
}
运行命令w?foo bar
时,我的机器人会返回“带字符串的foo默认命令”,而不是所需的“ bar默认命令”。用一个字符串注释掉我的测试方法返回了我想要的。有没有办法指定我的嵌套命令,同时仍然能够在父组命令中接受字符串?
答案 0 :(得分:1)
您可以通过在内部命令上添加PriorityAttribute
来实现这种行为。这将告诉Discord.net首先检查此命令。
注意:PriorityAttribute
中插入的最高数字将首先被检查!