Remove reminder embed, only send text message
Some checks failed
Silvanus Production Dockerization / build (pull_request) Has been cancelled
Some checks failed
Silvanus Production Dockerization / build (pull_request) Has been cancelled
This commit is contained in:
parent
7291216dcb
commit
88cc4eda3c
@ -1046,9 +1046,9 @@ 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);
|
||||||
if (isDev) console.log(`WR: ${guild.name}: ${guildInfo.treeName}`);
|
if (isDev) console.log(`WR: ${guild.name}: ${guildInfo.treeName}`);
|
||||||
await reminderChannel.send(reminderEmbed).then(async m => {
|
await reminderChannel.send(message).then(async m => {
|
||||||
if (!m.deletable) return;
|
if (!m.deletable) return;
|
||||||
await this.sleep(500).then(async () => {
|
await this.sleep(500).then(async () => {
|
||||||
await m.delete().catch(e => console.error(e));
|
await m.delete().catch(e => console.error(e));
|
||||||
@ -1059,9 +1059,9 @@ const functions = {
|
|||||||
},
|
},
|
||||||
async sendFruitReminder(guildInfo, message, channelId, guild) {
|
async sendFruitReminder(guildInfo, message, channelId, guild) {
|
||||||
const reminderChannel = await guild.channels.fetch(channelId);
|
const reminderChannel = await guild.channels.fetch(channelId);
|
||||||
const reminderEmbed = functions.builders.fruitReminderEmbed(message, guildInfo);
|
// const reminderEmbed = functions.builders.fruitReminderEmbed(message, guildInfo);
|
||||||
if (isDev) console.log(`FR: ${guild.name}: ${guildInfo.treeName}`);
|
if (isDev) console.log(`FR: ${guild.name}: ${guildInfo.treeName}`);
|
||||||
await reminderChannel.send(reminderEmbed).then(async m => {
|
await reminderChannel.send(message).then(async m => {
|
||||||
if (!m.deletable) return;
|
if (!m.deletable) return;
|
||||||
await this.sleep(500).then(async () => {
|
await this.sleep(500).then(async () => {
|
||||||
await m.delete().catch(e => console.error(e));
|
await m.delete().catch(e => console.error(e));
|
||||||
|
Loading…
Reference in New Issue
Block a user