def __init__(self, bot):
self.bot = bot
self.players = {}
for name, command in inspect.getmembers(self):
if isinstance(command, commands.Command) and command.parent is None and name != "audio":
self.bot.add_command(command)
self.audio.add_command(command)
评论列表
文章目录