aboutsummaryrefslogtreecommitdiff
path: root/commands/stop.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/stop.js')
-rw-r--r--commands/stop.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/commands/stop.js b/commands/stop.js
index ced8fe5..b3997e2 100644
--- a/commands/stop.js
+++ b/commands/stop.js
@@ -28,7 +28,6 @@ export default {
.setName('stop')
.setDescription('Powers off the bot'),
async execute(interaction, bot) {
- if (![config.botOwner].includes(interaction.user.id)) return await interaction.reply({ content: "You do not have permissions to execute this command.", ephemeral: true });
await interaction.reply({ content: 'Powering off...', ephemeral: true})
return await stopBot(bot, interaction);
},