aboutsummaryrefslogtreecommitdiff
path: root/commands/Music/skip.js
blob: 96cecf6fdbb182f07fdd562e2b82c9882438882d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** **************************************
 *
 *   Skip: Plugin for PokeBot that performs music player actions.
 *   Copyright (C) 2018 TheEdge, jtsshieh, Alee
 *
 *   Licensed under the Open Software License version 3.0
 *
 * *************************************/

exports.run = async (bot, msg) => {
  const music = bot.plugins.music;
  music.skip(bot, msg);
};

exports.conf = {
  aliases: [],
  guildOnly: true,
};

exports.help = {
  name: 'skip',
  description: 'Skip a song in the queue.',
};