DiscordAPIError: Unknown Message

拈花ヽ惹草 提交于 2019-12-02 03:14:07

I think that's caused by the fact that you're deleting the message with message.delete() in the first lines, but at the end you do that again with message.delete(5000). The rest of the code runs fine because even if you deleted the message it's still saved in your message variable, but when you try to delete that again the API isn't able to find it. Try removing one of the message.delete()

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!