@client.command(pass_context=True)
async def warn(ctx, user: discord.Member, content):
embedW = discord.Embed(
colour = discord.Colour.red()
)
embedW.set_author(name='You got warned!')
embedW.add_field(name='-Reason-', value=content, inline=True)
await client.send_message(user, embed=embedW)
那是我的代码,好吧,如果我在任何聊天中都写“ $ warn @ Exampleuser#1234在这里写原因”,它会发送一个dm,但是在带有-Reason-的字段中,它仅显示“写”而不是“写原因”这里”。我该怎么办?