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}!`); } };