Self-destructing water relay
This commit is contained in:
parent
663ef2297b
commit
8bc80dfaa8
@ -688,7 +688,12 @@ const functions = {
|
|||||||
async sendWaterReminder(guildInfo, message, channelId, guild) {
|
async sendWaterReminder(guildInfo, message, channelId, guild) {
|
||||||
const reminderChannel = await guild.channels.fetch(channelId);
|
const reminderChannel = await guild.channels.fetch(channelId);
|
||||||
const reminderEmbed = functions.builders.waterReminderEmbed(message, guildInfo);
|
const reminderEmbed = functions.builders.waterReminderEmbed(message, guildInfo);
|
||||||
await reminderChannel.send(reminderEmbed).catch(err => {
|
await reminderChannel.send(reminderEmbed).then(async m => {
|
||||||
|
if (!m.deletable) return;
|
||||||
|
await this.sleep(500).then(async () => {
|
||||||
|
await m.delete().catch(e => console.error(e));
|
||||||
|
});
|
||||||
|
}).catch(err => {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user