From f7a79065326ba085c3dde35b65aeff62f9cc93f9 Mon Sep 17 00:00:00 2001 From: Aster Fialla Date: Sat, 14 Feb 2026 11:44:36 -0500 Subject: [PATCH] got rid of alias until i figure out command handler --- bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.js b/bot.js index 592bb6f..ac664fa 100644 --- a/bot.js +++ b/bot.js @@ -35,7 +35,7 @@ client.on(Events.MessageCreate, async (message) => { const args = messageHelper.parseCommandArgs(content, commandName); const command = commands.get(commandName); - if (command || command.alias) { + if (command) { try { await command.execute(message, client, args); } catch (err) {