Compare commits

..

2 Commits

Author SHA1 Message Date
edb786ec04 finished(?) renaming commands 2022-02-11 13:51:16 -06:00
525904de5a updated command name 2022-02-11 13:50:45 -06:00
4 changed files with 2 additions and 10 deletions

4
dist/discord.js vendored
View File

@@ -34,10 +34,6 @@ const commands = [
name: 'leave',
description: 'leave the active queue'
},
{
name: 'stop',
description: 'stops the current queue (must have the Manage Messages permission)'
},
{
name: 'player',
description: 'display player information',

2
dist/queue.js vendored
View File

@@ -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;
}
/**

View File

@@ -33,10 +33,6 @@ const commands = [
name: 'leave',
description: 'leave the active queue'
},
{
name: 'stop',
description: 'stops the current queue (must have the Manage Messages permission)'
},
{
name: 'player',
description: 'display player information',

View File

@@ -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;
}