Change all "timer" to "reminder"

This commit is contained in:
Dragon Fire
2021-04-09 07:58:30 -04:00
parent 8a9b81697a
commit c2aabb1bf4
+2 -2
View File
@@ -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.');
}
};