1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 04:11:00 -04:00

Disable 'series' subcommand

This commit is contained in:
toast-ts 2022-11-27 11:45:38 -08:00
parent bdd1e6c382
commit 7b9ddde4f2

View File

@ -242,7 +242,7 @@ export default {
].join('\n'));
interaction.reply({embeds: [embed2]})
break;
case 'series':
/* case 'series':
const embed3 = new client.embed().setColor(client.config.embedColor).setTitle('How to join the Daggerwin MP series')
.setDescription([
'To join the Daggerwin MP series, you first need to:',
@ -252,7 +252,7 @@ export default {
'**4:** If you don\'t receive the role within a day or so, please message an Admin and they will sort it out.',
'**5:** Take a look in <#511657659364147200> to get information on how to join the server.'
].join('\n'));
interaction.reply({embeds: [embed3]})
interaction.reply({embeds: [embed3]}) */
}
},
data: new SlashCommandBuilder()
@ -267,7 +267,7 @@ export default {
.addSubcommand((opt)=>opt
.setName('info')
.setDescription('Provides you with server information such as filters and so on'))
.addSubcommand((opt)=>opt
/* .addSubcommand((opt)=>opt
.setName('series')
.setDescription('Step-by-step on joining Daggerwin\'s MP series'))
.setDescription('Step-by-step on joining Daggerwin\'s MP series')) */
}