为自已答案进行了编辑
message.guild.roles.find is not a function
是在DJS v12上使用DJS v11方法的结果,也就是说message.guild.roles.find
已过时,应替换为
message.guild.roles.cache.find
DJS v11现在已停产。请遵循本指南来更新您的v12 Here
代码答案 0 :(得分:6)
是的,由于v12使用Managers,因此您现在必须使用message.guild.roles.cache.find
。
您可以自行阅读documentation来查找其他更改^^