more command renaming
This commit is contained in:
8
dist/discord.js
vendored
8
dist/discord.js
vendored
@@ -6,8 +6,8 @@ const v9_1 = require("discord-api-types/v9");
|
|||||||
// list of commands to register with discord
|
// list of commands to register with discord
|
||||||
const commands = [
|
const commands = [
|
||||||
{
|
{
|
||||||
name: 'queue',
|
name: 'open',
|
||||||
description: 'initialize a queue for this channel',
|
description: 'open a queue for this channel',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
type: 4,
|
type: 4,
|
||||||
@@ -22,6 +22,10 @@ const commands = [
|
|||||||
name: 'close',
|
name: 'close',
|
||||||
description: 'close the queue for this channel'
|
description: 'close the queue for this channel'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'queue',
|
||||||
|
description: 'view queue info'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'join',
|
name: 'join',
|
||||||
description: 'join the active queue'
|
description: 'join the active queue'
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import { Routes } from 'discord-api-types/v9';
|
|||||||
// list of commands to register with discord
|
// list of commands to register with discord
|
||||||
const commands = [
|
const commands = [
|
||||||
{
|
{
|
||||||
name: 'queue',
|
name: 'open',
|
||||||
description: 'initialize a queue for this channel',
|
description: 'open a queue for this channel',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
type: 4, //INTEGER
|
type: 4, //INTEGER
|
||||||
@@ -20,6 +20,11 @@ const commands = [
|
|||||||
name: 'close',
|
name: 'close',
|
||||||
description: 'close the queue for this channel'
|
description: 'close the queue for this channel'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: 'queue',
|
||||||
|
description: 'view queue info'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'join',
|
name: 'join',
|
||||||
description: 'join the active queue'
|
description: 'join the active queue'
|
||||||
|
|||||||
Reference in New Issue
Block a user