summaryrefslogtreecommitdiff
path: root/src/commands/voice/queue.ts
diff options
context:
space:
mode:
author8cy <[email protected]>2020-07-23 23:24:17 -0700
committer8cy <[email protected]>2020-07-23 23:24:17 -0700
commitbb511abc03bb66848947e37a999502b813c77269 (patch)
tree612c010fc8317e1cdf11471a18aad0270819d33e /src/commands/voice/queue.ts
parentfix: if clear amount equal or over 100, round down to 99 (diff)
downloaddep-core-bb511abc03bb66848947e37a999502b813c77269.tar.xz
dep-core-bb511abc03bb66848947e37a999502b813c77269.zip
goodbye old uwufier :cry:
Diffstat (limited to 'src/commands/voice/queue.ts')
-rw-r--r--src/commands/voice/queue.ts60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/commands/voice/queue.ts b/src/commands/voice/queue.ts
deleted file mode 100644
index f8afedd..0000000
--- a/src/commands/voice/queue.ts
+++ /dev/null
@@ -1,60 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-import { MessageEmbed }from 'discord.js';
-//@ts-ignore
-import emoji from 'emoji-random';
-
-module.exports = class QueueVoice extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'queue',
- aliases: [
- 'q',
- 'song-list',
- 'next-songs',
- 'songlist',
- 'nextsongs',
- 'nextsong',
- 'next-song'
- ],
- group: 'voice',
- memberName: 'queue',
- description: 'Displays the current track queue.',
- guildOnly: true,
- examples: [
- 'uwu!queue',
- 'uwu!q',
- 'uwu!songlist',
- 'uwu!song-list',
- 'uwu!nextsong',
- 'uwu!next-song',
- 'uwu!nextsongs',
- 'uwu!next-songs'
- ],
- clientPermissions: ['SPEAK', 'CONNECT', 'SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- });
- }
- run(msg: CommandoMessage) {
- //@ts-ignore
- if (msg.guild.musicData.queue.length == 0)
- return msg.say('There aren\'t any songs in the current queue. ' + emoji.random());
- //@ts-ignore
- const titleArray = [];
- //@ts-ignore
- msg.guild.musicData.queue.map(obj => {
- titleArray.push(obj.title);
- });
- let queueEmbed = new MessageEmbed()
- .setColor(0xFFCC4D)
- .setTitle('Music Queue ' + emoji.random());
- for (let i = 0; i < titleArray.length; i++) {
- //@ts-ignore
- queueEmbed.addField(`‎`, `**${i + 1}**: ` + `${titleArray[i]}`);
- }
- return msg.say(queueEmbed);
- }
-}; \ No newline at end of file