Не работает изменение сообщения
bot.on('ready', () => {
console.log(`Запустился бот ${bot.user.username}`);
bot.generateInvite(["adm"]).then(link => {
console.log(link);
});
});
bot.on('message', msg => {
if (msg.content === prefix + 'host') {
msg.reply
('Game has started! Type !join\n1:\n2:\n3:\n4:\n5:\n6:\n7:\n8:\n9:\n10:' );
;
}
});
bot.on('message', msg => {
if (msg.content === prefix + 'join') {
msg.edit
('Game has started! Type !join\n1:\n2:\n3:\n4:\n5:\n6:\n7:\n8:\n9:\n10:')
}
});
bot.login(token);