Adjust Command Groups

This commit is contained in:
Dragon Fire
2020-10-31 11:27:28 -04:00
parent 8804391a8f
commit 15b722c6a5
5 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -270,6 +270,8 @@ Total: 554
* **help:** Displays a list of available commands, or detailed information for a specific command. * **help:** Displays a list of available commands, or detailed information for a specific command.
* **info:** Responds with detailed bot information. * **info:** Responds with detailed bot information.
* **invite:** Responds with the bot's invite links. * **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. * **options:** Responds with a list of server options.
* **ping:** Checks the bot's ping to the Discord server. * **ping:** Checks the bot's ping to the Discord server.
* **report:** Reports something to the bot owner(s). * **report:** Reports something to the bot owner(s).
@@ -821,12 +823,10 @@ Total: 554
* **tax:** Determines the total cost of something plus tax. * **tax:** Determines the total cost of something plus tax.
* **units:** Converts units to/from other units. * **units:** Converts units to/from other units.
### Voice-Based: ### Play Audio:
* **airhorn:** Plays an airhorn sound in a voice channel. * **airhorn:** Plays an airhorn sound in a voice channel.
* **dec-talk:** The world's best Text-to-Speech. * **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. * **soundboard:** Plays a sound in a voice channel.
* **vocodes:** Speak text like a variety of famous figures. * **vocodes:** Speak text like a variety of famous figures.
+1 -1
View File
@@ -34,7 +34,7 @@ client.registry
['edit-meme', 'Meme Generators'], ['edit-meme', 'Meme Generators'],
['edit-text', 'Text Manipulation'], ['edit-text', 'Text Manipulation'],
['edit-number', 'Number Manipulation'], ['edit-number', 'Number Manipulation'],
['voice', 'Voice-Based'], ['voice', 'Play Audio'],
['phone', 'Phone'], ['phone', 'Phone'],
['code', 'Coding Tools'], ['code', 'Coding Tools'],
['other', 'Other'], ['other', 'Other'],
@@ -5,7 +5,7 @@ module.exports = class JoinCommand extends Command {
super(client, { super(client, {
name: 'join', name: 'join',
aliases: ['join-voice-channel', 'join-vc', 'join-voice', 'join-channel'], aliases: ['join-voice-channel', 'join-vc', 'join-voice', 'join-channel'],
group: 'voice', group: 'util',
memberName: 'join', memberName: 'join',
description: 'Joins your voice channel.', description: 'Joins your voice channel.',
guildOnly: true, guildOnly: true,
@@ -5,7 +5,7 @@ module.exports = class LeaveCommand extends Command {
super(client, { super(client, {
name: 'leave', name: 'leave',
aliases: ['leave-voice-channel', 'leave-vc', 'leave-voice', 'leave-channel'], aliases: ['leave-voice-channel', 'leave-vc', 'leave-voice', 'leave-channel'],
group: 'voice', group: 'util',
memberName: 'leave', memberName: 'leave',
description: 'Leaves the current voice channel.', description: 'Leaves the current voice channel.',
guildOnly: true, guildOnly: true,
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "xiao", "name": "xiao",
"version": "119.36.0", "version": "119.37.0",
"description": "Your personal server companion.", "description": "Your personal server companion.",
"main": "Xiao.js", "main": "Xiao.js",
"scripts": { "scripts": {