我想要我的机器人,发送my emotes
,等待1秒,然后将消息编辑为my others emotes
。
这是我的代码:
message.channel.send('my emotes')
.then((msg) => {
setTimeout(function() {
msg.edit('my other emotes');
}, 1000)});
他发给我这个错误:Cannot read property 'edit' of undefined
感谢您帮助我。
答案 0 :(得分:2)
好的,最终有效的代码是:
message.channel.send('my emote')
.then((msg)=> {
setTimeout(function(){
msg.edit('my others emotes');
}, 1000)
});