我做了一个建议命令,但如果用户不在他们的句子中添加引号,它只会选择他们输入的第一个单词例如:-suggest this is a test。 它只会选择“这个”对此有任何修复吗?
命令代码行:
@client.command()
async def suggest(ctx, suggestion):
channel = client.get_channel(754640430670413835)
embed = discord.Embed(color=0xff0000)
embed.add_field(name="SUGGESTION", value="{} suggested this: ** {} **".format(ctx.author.mention, suggestion), inline=False)
await channel.send(embed=embed)
await ctx.send("Thank you for your suggestion {}".format(ctx.author.mention))
慕沐林林
相关分类