def massban(self, ctx, reason: ActionReason, *members: MemberID):
"""Mass bans multiple members from the server.
You can also ban from ID to ban regardless whether they're
in the server or not.
Note that unlike the ban command, the reason comes first
and is not optional.
In order for this to work, the bot must have Ban Member permissions.
To use this command you must have Ban Members permission.
"""
for member_id in members:
await ctx.guild.ban(discord.Object(id=member_id), reason=reason)
await ctx.send('\N{OK HAND SIGN}')
评论列表
文章目录