mirror of
https://github.com/jcreek/denBot.git
synced 2026-07-13 02:43:46 +00:00
feat(*): Add working show queue command
This commit is contained in:
@@ -15,6 +15,7 @@ client.once('ready', () =>{
|
|||||||
* Commands:
|
* Commands:
|
||||||
* q - Join the queue
|
* q - Join the queue
|
||||||
* lq - Leave the queue
|
* lq - Leave the queue
|
||||||
|
* sq - Show the queue
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function generateRandomCode() {
|
function generateRandomCode() {
|
||||||
@@ -104,4 +105,11 @@ client.on('message', function (message) {
|
|||||||
message.delete();
|
message.delete();
|
||||||
message.channel.send(`${message.author.username} you can't leave the queue before you've joined it!`);
|
message.channel.send(`${message.author.username} you can't leave the queue before you've joined it!`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Show the queue
|
||||||
|
if(command === 'sq') {
|
||||||
|
// Delete the message with the bot command
|
||||||
|
message.delete();
|
||||||
|
checkQueue(message);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user