mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 15:07:42 +02:00
Adjust Command Groups
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
@@ -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'],
|
||||
|
||||
@@ -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,
|
||||
@@ -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,
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "119.36.0",
|
||||
"version": "119.37.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user