`module.exports = {
name: 'lat2',
description: 'Let the Bot display latency/Response Time and API latency',
execute(message, args) {
const Embed1 = {
color: "RANDOM",
description: 'Pinging...',
};
const Embed2 = {
color: "RANDOM",
title: 'Latencies',
description: `Latency/Response Time: ${send.createdTimestamp - message.createdTimestamp}ms\nAPI latency/"Remote Response time": ${Math.round(message.client.ws.ping)}ms`,
};
message.channel.send({ embed: Embed1 }).then(send => {
send.edit({ embed: Embed2 });
})
}
};`
так могу ли я все это встроить или нет? потому что ... send is not defined
эта вещь отлично работает в версии без встраивания.