From c2aabb1bf48694b20c70b5db04fd43d12d0d5484 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 9 Apr 2021 07:58:30 -0400 Subject: [PATCH] Change all "timer" to "reminder" --- commands/remind/delete-reminder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/remind/delete-reminder.js b/commands/remind/delete-reminder.js index 0cce3d9c..916cdcf8 100644 --- a/commands/remind/delete-reminder.js +++ b/commands/remind/delete-reminder.js @@ -13,8 +13,8 @@ module.exports = class DeleteReminderCommand extends Command { async run(msg) { const exists = await this.client.timers.exists(msg.channel.id, msg.author.id); - if (!exists) return msg.reply('🕰️ You do not have a timer set in this channel.'); + if (!exists) return msg.reply('🕰️ You do not have a reminder set in this channel.'); await this.client.timers.deleteTimer(msg.channel.id, msg.author.id); - return msg.say('🕰️ Your timer has been deleted.'); + return msg.say('🕰️ Your reminder has been deleted.'); } };