From d9b8d22bfe15161b2a880298757b00b7a98a52b9 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 21 Jun 2020 11:44:08 -0400 Subject: [PATCH] Add ping to timer --- 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 3c169f55..04bde3a9 100644 --- a/commands/other/timer.js +++ b/commands/other/timer.js @@ -24,6 +24,6 @@ module.exports = class TimerCommand extends Command { const display = time > 59 ? `${time / 60} minutes` : `${time} seconds`; await msg.say(`🕰️ Set a timer for **${display}**.`); await delay(time * 1000); - return msg.say(`🕰️ Your **${display}** timer is finished!`); + return msg.say(`🕰️ Your **${display}** timer is finished ${msg.author}!`); } };