fixed bug for import not sending help text, added help text if you type a unrecognized command

This commit is contained in:
Aster Fialla
2026-02-19 19:31:18 -05:00
parent 1e2724bbfb
commit c4c6ad0fdd
3 changed files with 8 additions and 4 deletions

View File

@@ -44,6 +44,9 @@ client.on(Events.MessageCreate, async (message) => {
throw e
});
}
else {
await message.reply("Command not recognized. Try typing `pf;help` for command list.");
}
}
catch(error) {
console.error(error);