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.'); } };