From 53bb61a950ad09410d86a2dd3337180fcbbafeb5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 13 Nov 2020 16:57:30 -0500 Subject: [PATCH] Fix --- commands/other/timer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/other/timer.js b/commands/other/timer.js index 2abdb656..e80ed4b1 100644 --- a/commands/other/timer.js +++ b/commands/other/timer.js @@ -30,6 +30,6 @@ module.exports = class TimerCommand extends Command { this.timers.delete(msg.channel.id); }, timeMs); this.timers.set(msg.channel.id, timeout); - return msg.say(`🕰️ Okay, I will remind you **"${time.eventTitle}" ${display}**.`); + return msg.say(`🕰️ Okay, I will remind you **"${time.eventTitle}"** ${display}.`); } };