aboutsummaryrefslogtreecommitdiff
path: root/commands/Music/skip.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Music/skip.js')
-rw-r--r--commands/Music/skip.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/commands/Music/skip.js b/commands/Music/skip.js
deleted file mode 100644
index 96cecf6..0000000
--- a/commands/Music/skip.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/** **************************************
- *
- * 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.',
-};