extend command bypassing

if a command begins with an underscore ("_"), it won't be loaded.
This commit is contained in:
carol 2020-01-06 10:14:33 -08:00 committed by GitHub
parent d9a8ffc41c
commit e0e8a57bef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ const init = async () => {
await crawl("commands",cmdFiles);
client.logger.log(`Loading a total of ${cmdFiles.length} commands.`);
cmdFiles.forEach(f => {
if (!f.endsWith(".js")) return;
if (!f.endsWith(".js") || !f.startsWith("_")) return;
const response = client.loadCommand(f);
if (response) console.log(response);
});
@ -61,4 +61,4 @@ const init = async () => {
client.login(client.config.token);
};
init();
init();