From a30d408c02032ad03b9205a04cffc24a757430f4 Mon Sep 17 00:00:00 2001 From: Aster Fialla Date: Thu, 19 Feb 2026 21:41:59 -0500 Subject: [PATCH] Merge branch 'main' of https://github.com/pieartsy/PluralFlux into add-tests --- src/bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.js b/src/bot.js index d1e276d..3a89b31 100644 --- a/src/bot.js +++ b/src/bot.js @@ -34,7 +34,7 @@ client.on(Events.MessageCreate, async (message) => { const commandName = content.slice(messageHelper.prefix.length).split(" ")[0]; // If there's no command name (ie just the prefix) - if (!commandName) await message.reply(enums.help.SHORT_DESC_PLURALFLUX); + if (!commandName) return await message.reply(enums.help.SHORT_DESC_PLURALFLUX); const args = messageHelper.parseCommandArgs(content, commandName);