Skip to content

Commit 1f1063f

Browse files
committedJul 20, 2023
fix: Deploy command
Signed-off-by: TannerGabriel <gabrieltanner.code@gmail.com>
1 parent cecfa18 commit 1f1063f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎client/Client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const {Client, Collection, GatewayIntentBits, Partials} = require('discord.js');
33
module.exports = class extends Client {
44
constructor(config) {
55
super({
6-
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildVoiceStates]
6+
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildVoiceStates,GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent]
77
});
88

99
this.commands = new Collection();

‎commands/play.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
options: [
99
{
1010
name: 'query',
11-
type: ApplicationCommandOptionType.STRING_TYPE,
11+
type: ApplicationCommandOptionType.String,
1212
description: 'The song you want to play',
1313
required: true,
1414
},

‎commands/playtop.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
options: [
99
{
1010
name: 'query',
11-
type: ApplicationCommandOptionType.STRING_TYPE,
11+
type: ApplicationCommandOptionType.String,
1212
description: 'The song you want to play',
1313
required: true,
1414
},

0 commit comments

Comments
 (0)
Please sign in to comment.