我正在编码Discord机器人来宣布ETS2的车队,但是该机器人无法识别命令@nonobjc class var mooButtonBackgroundColor : UIColor {
.green //UIColor(named: "Color.Button.Background")! // 0.129, 0.490, 0.851, 1
}
。当我在Discord中使用命令激活bot(; convoy sim1)时,出现错误消息const embed = new Discord.RichEmbed()
。我已尽力调试代码,但未能解决问题。我已经按照每一篇有关向机器人发送嵌入代码的教程进行了学习,但是都没有帮助。
答案 0 :(得分:0)
如果您使用的是discord.js
12版或更高版本,则需要使用Discord.MessageEmbed
而不是Discord.RichEmbed
。来自documentation:
警告
在master分支上,接收和传出的嵌入类已统一;您将需要使用
Discord.MessageEmbed()
作为构造函数。