diff --git a/src/commands/ban.js b/src/commands/ban.js index 1dc887b..f31794e 100644 --- a/src/commands/ban.js +++ b/src/commands/ban.js @@ -7,6 +7,7 @@ module.exports = { description: "Ban a user", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("ban") diff --git a/src/commands/check.js b/src/commands/check.js index 3eee962..6f16e03 100644 --- a/src/commands/check.js +++ b/src/commands/check.js @@ -8,6 +8,7 @@ module.exports = { description: "Check a player's stats.", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("check") diff --git a/src/commands/clear.js b/src/commands/clear.js index 93026e7..cfcd984 100644 --- a/src/commands/clear.js +++ b/src/commands/clear.js @@ -6,6 +6,7 @@ module.exports = { description: "Clears messages", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("clear") diff --git a/src/commands/config.js b/src/commands/config.js index 0cbdb43..584af23 100644 --- a/src/commands/config.js +++ b/src/commands/config.js @@ -8,6 +8,7 @@ module.exports = { description: "Configure the bot", type: "slash", dev: true, + public: false, data: new SlashCommandBuilder() .setName("config") diff --git a/src/commands/devel.js b/src/commands/devel.js index b28cd03..91763be 100644 --- a/src/commands/devel.js +++ b/src/commands/devel.js @@ -5,6 +5,7 @@ module.exports = { description: "Admin command.", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("devel") diff --git a/src/commands/forceunverify.js b/src/commands/forceunverify.js index 99e3884..896de0c 100644 --- a/src/commands/forceunverify.js +++ b/src/commands/forceunverify.js @@ -9,6 +9,7 @@ module.exports = { description: "Force unverify a user", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("forceunverify") diff --git a/src/commands/forceupdate.js b/src/commands/forceupdate.js index eaa4168..5f17c3f 100644 --- a/src/commands/forceupdate.js +++ b/src/commands/forceupdate.js @@ -10,6 +10,7 @@ module.exports = { description: "Force update the user", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("forceupdate") diff --git a/src/commands/forceverify.js b/src/commands/forceverify.js index 7b3542a..1510ba2 100644 --- a/src/commands/forceverify.js +++ b/src/commands/forceverify.js @@ -11,6 +11,7 @@ module.exports = { description: "Force verify a user.", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("forceverify") diff --git a/src/commands/guild.js b/src/commands/guild.js index fdd4b59..da5f5d7 100644 --- a/src/commands/guild.js +++ b/src/commands/guild.js @@ -8,6 +8,7 @@ module.exports = { description: "Subcommands for guilds", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("guild") diff --git a/src/commands/help.js b/src/commands/help.js index 005b6da..647c5f0 100644 --- a/src/commands/help.js +++ b/src/commands/help.js @@ -6,6 +6,7 @@ module.exports = { description: "Help command", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("help") diff --git a/src/commands/kick.js b/src/commands/kick.js index 9f69f2b..a7c61cf 100644 --- a/src/commands/kick.js +++ b/src/commands/kick.js @@ -7,6 +7,7 @@ module.exports = { description: "Kick a member from the server.", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("kick") diff --git a/src/commands/ping.js b/src/commands/ping.js index 30fb435..d88d5dc 100644 --- a/src/commands/ping.js +++ b/src/commands/ping.js @@ -6,6 +6,7 @@ module.exports = { description: "Get the bot's ping.", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("ping") diff --git a/src/commands/remove.js b/src/commands/remove.js index 3d9efce..c054f24 100644 --- a/src/commands/remove.js +++ b/src/commands/remove.js @@ -7,6 +7,7 @@ module.exports = { description: "Remove a person on the waiting list.", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("remove") diff --git a/src/commands/reqs.js b/src/commands/reqs.js index 7f0da28..74023f6 100644 --- a/src/commands/reqs.js +++ b/src/commands/reqs.js @@ -7,6 +7,7 @@ module.exports = { description: "Displays the requirements for the guild.", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("reqs") diff --git a/src/commands/send.js b/src/commands/send.js index cbbd506..cb02a0d 100644 --- a/src/commands/send.js +++ b/src/commands/send.js @@ -6,6 +6,7 @@ module.exports = { description: "Send a message to a channel.", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("send") diff --git a/src/commands/setnick.js b/src/commands/setnick.js index 7d4d7d9..02acf77 100644 --- a/src/commands/setnick.js +++ b/src/commands/setnick.js @@ -5,6 +5,7 @@ module.exports = { description: "Set your nickname", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("setnick") diff --git a/src/commands/setup.js b/src/commands/setup.js index a972823..492e44a 100644 --- a/src/commands/setup.js +++ b/src/commands/setup.js @@ -6,6 +6,7 @@ module.exports = { description: "Used for setup of the bot.", type: "slash", dev: true, + public: false, data: new SlashCommandBuilder() .setName("setup") diff --git a/src/commands/slowmode.js b/src/commands/slowmode.js index 903f843..6e4e69e 100644 --- a/src/commands/slowmode.js +++ b/src/commands/slowmode.js @@ -6,6 +6,7 @@ module.exports = { description: "Set the slowmode of a channel.", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("slowmode") diff --git a/src/commands/timeout.js b/src/commands/timeout.js index 3c7db29..e7e9633 100644 --- a/src/commands/timeout.js +++ b/src/commands/timeout.js @@ -7,6 +7,7 @@ module.exports = { description: "Times out a memeber", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("timeout") diff --git a/src/commands/unban.js b/src/commands/unban.js index 5859710..288e94e 100644 --- a/src/commands/unban.js +++ b/src/commands/unban.js @@ -6,6 +6,7 @@ module.exports = { description: "Unban a user from the server", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("unban") diff --git a/src/commands/update.js b/src/commands/update.js index 8fd4fcd..22b9f89 100644 --- a/src/commands/update.js +++ b/src/commands/update.js @@ -10,6 +10,7 @@ module.exports = { description: "Update your guild rank.", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("update") diff --git a/src/commands/uuid.js b/src/commands/uuid.js index eadcaec..6f64dd4 100644 --- a/src/commands/uuid.js +++ b/src/commands/uuid.js @@ -7,6 +7,7 @@ module.exports = { description: "Get a player's UUID", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("uuid") diff --git a/src/commands/verify.js b/src/commands/verify.js index ab708c4..e10fbca 100644 --- a/src/commands/verify.js +++ b/src/commands/verify.js @@ -10,6 +10,7 @@ module.exports = { description: "Verify yourself as a member of the server.", type: "slash", dev: false, + public: true, data: new SlashCommandBuilder() .setName("verify") diff --git a/src/commands/whois.js b/src/commands/whois.js index df9f5e6..0d6fe0d 100644 --- a/src/commands/whois.js +++ b/src/commands/whois.js @@ -8,6 +8,7 @@ module.exports = { description: "Get's the ign of a user.", type: "slash", dev: false, + public: false, data: new SlashCommandBuilder() .setName("whois")