From 525904de5af3fd88ede76e443439c157f257410d Mon Sep 17 00:00:00 2001 From: ashley zomo Date: Fri, 11 Feb 2022 13:50:45 -0600 Subject: [PATCH] updated command name --- dist/queue.js | 2 +- src/queue.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/queue.js b/dist/queue.js index 949547a..b7d5190 100644 --- a/dist/queue.js +++ b/dist/queue.js @@ -115,7 +115,7 @@ var QueueCommands; function getInfo(interaction) { let info = QUEUE.get(interaction.channelId); if (!info) - throw (0, util_1.emsg)('There is not an active queue in this channel, type `/queue` to create one'); + throw (0, util_1.emsg)('There is not an active queue in this channel, type `/open` to create one'); return info; } /** diff --git a/src/queue.ts b/src/queue.ts index 8631d2c..fa2af61 100644 --- a/src/queue.ts +++ b/src/queue.ts @@ -124,7 +124,7 @@ export namespace QueueCommands { let info = QUEUE.get(interaction.channelId); if (!info) - throw emsg('There is not an active queue in this channel, type `/queue` to create one'); + throw emsg('There is not an active queue in this channel, type `/open` to create one'); return info; }