updated command name

This commit is contained in:
2022-02-11 13:50:45 -06:00
parent 4fdb233bd6
commit 525904de5a
2 changed files with 2 additions and 2 deletions

2
dist/queue.js vendored
View File

@@ -115,7 +115,7 @@ var QueueCommands;
function getInfo(interaction) { function getInfo(interaction) {
let info = QUEUE.get(interaction.channelId); let info = QUEUE.get(interaction.channelId);
if (!info) 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; return info;
} }
/** /**

View File

@@ -124,7 +124,7 @@ export namespace QueueCommands {
let info = QUEUE.get(interaction.channelId); let info = QUEUE.get(interaction.channelId);
if (!info) 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; return info;
} }