diff options
Diffstat (limited to 'commands/voice/skipall.js')
| -rw-r--r-- | commands/voice/skipall.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/commands/voice/skipall.js b/commands/voice/skipall.js index 202845d..65d5490 100644 --- a/commands/voice/skipall.js +++ b/commands/voice/skipall.js @@ -5,10 +5,22 @@ module.exports = class SkipAllVoice extends Command { constructor(client) { super(client, { name: 'skipall', + aliases: [ + 'endqueue', + 'endq', + 'skipqueue', + 'skipq' + ], group: 'voice', memberName: 'skipall', description: 'skip all songs in the queue', - guildOnly: true + guildOnly: true, + examples: [ + 's5n!endqueue', + 's5n!endq', + 's5n!skipqueue', + 's5n!skipq' + ] }); } run(msg) { |