remove duplicate commands

This commit is contained in:
SowinskiBraeden committed 2022-09-01 17:37:15 -07:00
1 parent 390e2438fb
commit af81959eaa
2 files changed
+2 -2

No files matched your search

+1 -1
View File
@@ -19,7 +19,7 @@ module.exports = {
for (const file of commandFiles) {
const command = require(`../commands/${file}`);
commands.push(command); // Include global commands in guild
if (!commands.global) commands.push(command); // Include global commands in guild
}
const rest = new REST({ version: '10' }).setToken(client.config.Token);