命令优先于子模块组Discord.Net

时间:2018-10-09 12:59:40

标签: c# discord discord.net

我正在尝试使用组设置一些嵌套的命令,但是父组的命令似乎具有优先权。

这是我的代码示例。

[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默认命令”。用一个字符串注释掉我的测试方法返回了我想要的。有没有办法指定我的嵌套命令,同时仍然能够在父组命令中接受字符串?

1 个答案:

答案 0 :(得分:1)

您可以通过在内部命令上添加PriorityAttribute来实现这种行为。这将告诉Discord.net首先检查此命令。

注意:PriorityAttribute中插入的最高数字将首先被检查!