Discord.py(重写)静音命令始终returns相同的响应

Discord.py (rewrite) mute command always returns the same response

我目前正在尝试构建一个 discord.py 静音命令,该命令发送一个嵌入询问用户是否确定他们想要静音,然后在添加反应时执行静音并且嵌入被编辑。我在尝试这样做时 运行 遇到了一些错误。

@bot.command()
@commands.has_permissions(manage_guild=True)
async def mute(ctx, message, member: discord.Member = None):
  
  guild = ctx.guild
  user = member

  if member == None:
    await ctx.send(f'**{ctx.message.author},** please mention somebody to mute.')
    return 

  if member == ctx.message.author:
    await ctx.send(f'**{ctx.message.author},** you cannot mute yourself, silly.')
    return 
  
  for role in guild.roles:
    if role.name == "Muted":
      if role in user.roles:
                await ctx.send("**{}** is already muted.".format(user))
                return

  embedcheck=discord.Embed(title="Mute", colour=0xFFD166, description=f'Are you sure you want to mute **{user}?**')
  
  embeddone=discord.Embed(title="Muted", colour=0x06D6A0,description=f'The mute has been done. **{user}** cannot talk in any channels anymore.')

  embedfail=discord.Embed(title="Not Muted",colour=0xEF476F,description=f'The mute did not carry out as I did not receive a reaction in time.')

  msg = await ctx.send(embed=embedcheck)
  await message.add_reaction('✅','❌')

  try:
      def check(rctn, user):
        return user.id == ctx.author.id and str(rctn) == '✅'
      reaction, user = await bot.wait_for('reaction_add', timeout=60.0, check=check)
  except asyncio.TimeoutError:
      await msg.edit(embed=embedfail)
  else:
      for role in guild.roles:
        if role.name == "Muted":
            await member.add_roles(role)
            await msg.edit(embed=embeddone)

当我 运行 命令时,我总是得到相同的输出,“...请提及要静音的人”,即使我已经提到了某人。当我不提及任何人时,我得到错误

    raise MissingRequiredArgument(param)
discord.ext.commands.errors.MissingRequiredArgument: message is a required argument that is missing.

async def mute(ctx, message, member: discord.Member = None)中省略message并将await message.add_reaction(...)更改为await msg.add_reaction(...)

@bot.command()
@commands.has_permissions(manage_guild=True)
async def mute(ctx, member: discord.Member = None):
  
  guild = ctx.guild
  user = member

  if member == None:
    await ctx.send(f'**{ctx.message.author},** please mention somebody to mute.')
    return 

  if member == ctx.message.author:
    await ctx.send(f'**{ctx.message.author},** you cannot mute yourself, silly.')
    return 
  
  for role in guild.roles:
    if role.name == "Muted":
      if role in user.roles:
                await ctx.send("**{}** is already muted.".format(user))
                return

  embedcheck=discord.Embed(title="Mute", colour=0xFFD166, description=f'Are you sure you want to mute **{user}?**')
  
  embeddone=discord.Embed(title="Muted", colour=0x06D6A0,description=f'The mute has been done. **{user}** cannot talk in any channels anymore.')

  embedfail=discord.Embed(title="Not Muted",colour=0xEF476F,description=f'The mute did not carry out as I did not receive a reaction in time.')

  msg = await ctx.send(embed=embedcheck)
  await msg.add_reaction('✅')
  await msg.add_reaction('❌')

  try:
      def check(rctn, user):
        return user.id == ctx.author.id and str(rctn) == '✅'
      reaction, user = await bot.wait_for('reaction_add', timeout=60.0, check=check)
  except asyncio.TimeoutError:
      await msg.edit(embed=embedfail)
  else:
      for role in guild.roles:
        if role.name == "Muted":
            await member.add_roles(role)
            await msg.edit(embed=embeddone)

您提到一个用户去了 message 而不是 member。不提及任何人会使 message 留空并向您发送错误,因为它是必需的参数。

我没有检查它是否会静音,但这应该可以解决您的 MissingRequiredArgument 错误。