From 05ead8229c17f77be23fc24493f0e898eda1a525 Mon Sep 17 00:00:00 2001 From: Minz Date: Wed, 13 Mar 2024 22:53:55 +0100 Subject: [PATCH] Make grab command global --- commands/utility/grab.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/utility/grab.js b/commands/utility/grab.js index caaa379..b19594d 100644 --- a/commands/utility/grab.js +++ b/commands/utility/grab.js @@ -2,7 +2,7 @@ const { SlashCommandBuilder } = require('discord.js'); module.exports = { category: 'utility', - global: false, + global: true, data: new SlashCommandBuilder() .setName('grab') .setDescription('Grab things') @@ -72,4 +72,4 @@ module.exports = { interaction.channel.send(stickers.length > 0 ? stickers.join('\n') : "Didn't receive any stickers"); }); } -}; \ No newline at end of file +};