Formatting changes + Update version to 1.0.0

This commit is contained in:
2025-05-11 22:49:14 -05:00
parent e728666332
commit 27c72c53eb
12 changed files with 3372 additions and 149 deletions

View File

@@ -18,7 +18,7 @@ module.exports = {
)),
async execute(interaction) {
const voiceOption = interaction.options.getString('type') ?? 'normal';
const prefix = 'o_sound' + (voiceOption!='normal'?'/' + voiceOption:'');
const prefix = 'o_sound' + (voiceOption != 'normal' ? '/' + voiceOption : '');
const response = await vcutil.play(interaction, prefix + "/000000" + util.randomHex() + ".wav");
await interaction.reply(response);
},