Make grab command global

This commit is contained in:
2024-03-13 22:53:55 +01:00
parent 6dac506438
commit 05ead8229c

View File

@@ -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");
});
}
};
};