got rid of alias until i figure out command handler

This commit is contained in:
Aster Fialla
2026-02-14 11:44:36 -05:00
committed by pieartsy
parent b3f565bd83
commit f7a7906532

2
bot.js
View File

@@ -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) {