3.0 public beta 3

This commit is contained in:
DJj123dj
2022-10-01 12:08:42 +02:00
parent 893a7c5b1f
commit 69b669956e
12 changed files with 34 additions and 23 deletions
+3 -2
View File
@@ -7,11 +7,12 @@ const l = bot.language
const permsChecker = require("../core/utils/permisssionChecker")
const APIEvents = require("../core/api/modules/events")
const DISABLE = require("../core/api/api.json").disable
module.exports = () => {
bot.errorLog.log("debug","COMMANDS: loaded close.js")
client.on("messageCreate",msg => {
if (!DISABLE.commands.text.close) client.on("messageCreate",msg => {
if (!msg.content.startsWith(config.prefix+"close")) return
const args = msg.content.substring((config.prefix+"close").length).split(" ")
@@ -53,7 +54,7 @@ module.exports = () => {
})
client.on("interactionCreate",(interaction) => {
if (!DISABLE.commands.slash.close) client.on("interactionCreate",(interaction) => {
if (!interaction.isChatInputCommand()) return
if (interaction.commandName != "close") return