Complete rewrite - Added slash commands

This commit is contained in:
2025-05-04 18:55:40 -05:00
parent 382ac41d7f
commit 6cae1d1eea
13 changed files with 3478 additions and 711 deletions

12
cmd/voice/leave.js Normal file
View File

@@ -0,0 +1,12 @@
const { SlashCommandBuilder } = require('discord.js');
const vcutil = require('../util/vc.js');
const util = require('../util/util.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('leave')
.setDescription('Disconnect O-Bot from the voice channel'),
async execute(interaction) {
const response = await vcutil.disconnect(interaction);
await interaction.reply(response);
},
};