我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用discord.ext.commands.guild_only()。
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)