Python discord.ext.commands 模块,guild_only() 实例源码

我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用discord.ext.commands.guild_only()

项目:PyMiki    作者:TheGrammarJew    | 项目源码 | 文件源码
def suggest_box():
    """Custom commands.guild_only with different error checking."""
    def pred(ctx):
        if ctx.guild is None:
            raise UnavailableTagCommand()
        return True
    return commands.check(pred)