diff --git a/README.md b/README.md index 847675a4..b6e993fb 100644 --- a/README.md +++ b/README.md @@ -270,6 +270,8 @@ Total: 554 * **help:** Displays a list of available commands, or detailed information for a specific command. * **info:** Responds with detailed bot information. * **invite:** Responds with the bot's invite links. +* **join:** Joins your voice channel. +* **leave:** Leaves the current voice channel. * **options:** Responds with a list of server options. * **ping:** Checks the bot's ping to the Discord server. * **report:** Reports something to the bot owner(s). @@ -821,12 +823,10 @@ Total: 554 * **tax:** Determines the total cost of something plus tax. * **units:** Converts units to/from other units. -### Voice-Based: +### Play Audio: * **airhorn:** Plays an airhorn sound in a voice channel. * **dec-talk:** The world's best Text-to-Speech. -* **join:** Joins your voice channel. -* **leave:** Leaves the current voice channel. * **soundboard:** Plays a sound in a voice channel. * **vocodes:** Speak text like a variety of famous figures. diff --git a/Xiao.js b/Xiao.js index 22829c04..eb7ebe7c 100644 --- a/Xiao.js +++ b/Xiao.js @@ -34,7 +34,7 @@ client.registry ['edit-meme', 'Meme Generators'], ['edit-text', 'Text Manipulation'], ['edit-number', 'Number Manipulation'], - ['voice', 'Voice-Based'], + ['voice', 'Play Audio'], ['phone', 'Phone'], ['code', 'Coding Tools'], ['other', 'Other'], diff --git a/commands/voice/join.js b/commands/util-public/join.js similarity index 98% rename from commands/voice/join.js rename to commands/util-public/join.js index 5f9e0b79..bea6482c 100644 --- a/commands/voice/join.js +++ b/commands/util-public/join.js @@ -5,7 +5,7 @@ module.exports = class JoinCommand extends Command { super(client, { name: 'join', aliases: ['join-voice-channel', 'join-vc', 'join-voice', 'join-channel'], - group: 'voice', + group: 'util', memberName: 'join', description: 'Joins your voice channel.', guildOnly: true, diff --git a/commands/voice/leave.js b/commands/util-public/leave.js similarity index 97% rename from commands/voice/leave.js rename to commands/util-public/leave.js index 37b5aa48..0f4c47a8 100644 --- a/commands/voice/leave.js +++ b/commands/util-public/leave.js @@ -5,7 +5,7 @@ module.exports = class LeaveCommand extends Command { super(client, { name: 'leave', aliases: ['leave-voice-channel', 'leave-vc', 'leave-voice', 'leave-channel'], - group: 'voice', + group: 'util', memberName: 'leave', description: 'Leaves the current voice channel.', guildOnly: true, diff --git a/package.json b/package.json index 90d1b635..0f2db385 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "119.36.0", + "version": "119.37.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {