From 610ca41195c379defcdf69d9fd8ed5f382728cb7 Mon Sep 17 00:00:00 2001 From: ashley zomo Date: Fri, 11 Feb 2022 13:29:23 -0600 Subject: [PATCH] more command renaming --- dist/discord.js | 8 ++++++-- src/discord.ts | 9 +++++++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/dist/discord.js b/dist/discord.js index 107c0df..4866c6a 100644 --- a/dist/discord.js +++ b/dist/discord.js @@ -6,8 +6,8 @@ const v9_1 = require("discord-api-types/v9"); // list of commands to register with discord const commands = [ { - name: 'queue', - description: 'initialize a queue for this channel', + name: 'open', + description: 'open a queue for this channel', options: [ { type: 4, @@ -22,6 +22,10 @@ const commands = [ name: 'close', description: 'close the queue for this channel' }, + { + name: 'queue', + description: 'view queue info' + }, { name: 'join', description: 'join the active queue' diff --git a/src/discord.ts b/src/discord.ts index a22aaa1..dff7218 100644 --- a/src/discord.ts +++ b/src/discord.ts @@ -4,8 +4,8 @@ import { Routes } from 'discord-api-types/v9'; // list of commands to register with discord const commands = [ { - name: 'queue', - description: 'initialize a queue for this channel', + name: 'open', + description: 'open a queue for this channel', options: [ { type: 4, //INTEGER @@ -20,6 +20,11 @@ const commands = [ name: 'close', description: 'close the queue for this channel' }, + + { + name: 'queue', + description: 'view queue info' + }, { name: 'join', description: 'join the active queue'