From df352774bd8316b44b3b784e3834b9bd4c58b146 Mon Sep 17 00:00:00 2001
From: Loic Bersier <loic.bersier1@gmail.com>
Date: Mon, 17 Sep 2018 22:00:50 +0200
Subject: [PATCH] fixed aliases

---
 commands/fun/music.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/commands/fun/music.js b/commands/fun/music.js
index 61a6a15d..6bee751d 100644
--- a/commands/fun/music.js
+++ b/commands/fun/music.js
@@ -4,7 +4,7 @@ module.exports = class MusicCommand extends Command {
     constructor(client) {
         super(client, {
             name: 'music',
-            aliases: 'play',
+            aliases: ['play'],
             group: 'fun',
             memberName: 'music',
             description: 'Play youtube link in vocal',
@@ -14,6 +14,7 @@ module.exports = class MusicCommand extends Command {
                     key: 'ytblink',
                     prompt: 'Wich Youtube link would you like to play?\nTo stop the bot just do "haha music stop"',
                     type: 'string',
+                    default: 'https://www.youtube.com/watch?v=kJQP7kiw5Fk'
                 }
             ]
         });