标签: discord bots discord.py message text-to-speech
我一直在寻找一种方法,使机器人在编辑后的消息中大声说出来,在消息首次发送时使用tts=True效果很好。但是,在编辑时它不起作用。这是我尝试过的代码。
tts=True
msg = await ctx.send(content='Hello world', tts=True) await msg.edit(content="I said hello", tts=True)
在Google上找不到任何内容。希望这里的人知道如何做。