fix
This commit is contained in:
parent
4ee5c2286c
commit
f856b1c474
1 changed files with 7 additions and 5 deletions
|
@ -61,11 +61,13 @@ client.on("messageCreate", async message => {
|
||||||
})
|
})
|
||||||
.setTimestamp()
|
.setTimestamp()
|
||||||
.setColor(client.color);
|
.setColor(client.color);
|
||||||
|
try {
|
||||||
const m = await message.reply({
|
const m = await message.reply({
|
||||||
embeds: [_],
|
embeds: [_],
|
||||||
components: Utils.buttons(client),
|
components: Utils.buttons(client),
|
||||||
});
|
});
|
||||||
setTimeout(() => m.delete(), 15000);
|
setTimeout(() => m.delete(), 15000);
|
||||||
|
} catch (_) {}
|
||||||
}
|
}
|
||||||
if (data.User?.Blacklist) return;
|
if (data.User?.Blacklist) return;
|
||||||
if (
|
if (
|
||||||
|
|
Loading…
Reference in a new issue