From 3dd47c1294ffc4d5e53403a7aa08a5217a960356 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 1 Jun 2023 12:28:11 +0200 Subject: [PATCH] Add missing break to switch statement --- commands/misc/timer.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/misc/timer.js b/commands/misc/timer.js index 439dc6a..89c7a5c 100644 --- a/commands/misc/timer.js +++ b/commands/misc/timer.js @@ -30,6 +30,7 @@ module.exports = { break; case "show": sendText = await showTimer(message.author.id, args[1]); + break; default: sendText = "not sure what you mean" if(!isNaN(parseTime(args[0], Math.floor(new Date() / 1000))))