From 67ed034ffb63ed523e4d7f12f189c1d14c25a63a Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Tue, 11 Oct 2022 15:59:04 -0700 Subject: [PATCH] update version --- config/config.js | 2 +- util/RegisterSlashCommands.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.js b/config/config.js index 45a5a4f..d402ea0 100644 --- a/config/config.js +++ b/config/config.js @@ -2,7 +2,7 @@ require('dotenv').config(); module.exports = { Dev: "PROD.", - Version: "12.6.0", + Version: "12.7.2", Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot DefaultPrefix: "?", ServerID: "955668596745461830", diff --git a/util/RegisterSlashCommands.js b/util/RegisterSlashCommands.js index 93b8ad1..c432bc8 100644 --- a/util/RegisterSlashCommands.js +++ b/util/RegisterSlashCommands.js @@ -19,7 +19,7 @@ module.exports = { for (const file of commandFiles) { const command = require(`../commands/${file}`); - if (!commands.global) commands.push(command); // Include global commands in guild + if (!commands.global) commands.push(command); // don't include global commands } const rest = new REST({ version: '10' }).setToken(client.config.Token);