diff --git a/commands/misc/timers.js b/commands/misc/timers.js index 0cc1329..a3ba7ca 100644 --- a/commands/misc/timers.js +++ b/commands/misc/timers.js @@ -7,6 +7,7 @@ module.exports = { if(timer.user === message.author.id) authorTimers += `\n`; }); - message.channel.send(`Your timers are:\n${authorTimers}`); + let sendText = "" === authorTimers ? `You have no timers` : `Your timers are:\n${authorTimers}` + message.channel.send(sendText); } }; \ No newline at end of file