This commit is contained in:
Raven Scott 2023-05-19 22:55:25 +02:00
parent 8ce9e18656
commit 1fe0f20e6f
1 changed files with 66 additions and 62 deletions

View File

@ -340,7 +340,9 @@ async function generateResponse(conversation, message) {
// if the message object doesn't exist, create it
if (!botMessage) {
botMessage = message.channel.send({ embeds: [embedData] });
(async () => {
botMessage = await message.channel.send({ embeds: [embedData] });
})();
} else {
botMessage.edit({ embeds: [embedData] }); // otherwise, update the message
}
@ -354,7 +356,9 @@ async function generateResponse(conversation, message) {
// if the message object doesn't exist, create it
if (!botMessage) {
botMessage = message.channel.send({ embeds: [embedData] });
(async () => {
botMessage = await message.channel.send({ embeds: [embedData] });
})();
} else {
botMessage.edit({ embeds: [embedData] }); // otherwise, update the message
}