From a3b32d30c5502de4fe9c7193232290cfb3a422ef Mon Sep 17 00:00:00 2001 From: Androz2091 Date: Sun, 21 Jun 2020 17:26:36 +0200 Subject: [PATCH] :lipstick: Pad block with blank lines --- src/Player.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Player.js b/src/Player.js index 6491fd9..0bbf577 100644 --- a/src/Player.js +++ b/src/Player.js @@ -342,6 +342,7 @@ class Player { * * @example * client.on('message', async (message) => { + * * const args = message.content.slice(settings.prefix.length).trim().split(/ +/g); * const command = args.shift().toLowerCase(); * @@ -379,6 +380,7 @@ class Player { * * @example * client.on('message', async (message) => { + * * const args = message.content.slice(settings.prefix.length).trim().split(/ +/g); * const command = args.shift().toLowerCase(); * @@ -388,6 +390,7 @@ class Player { * message.channel.send('Queue shuffled!'); * }); * } + * * }); */ shuffle (guildID) { @@ -412,6 +415,7 @@ class Player { * * @example * client.on('message', async (message) => { + * * const args = message.content.slice(settings.prefix.length).trim().split(/ +/g); * const command = args.shift().toLowerCase(); * @@ -421,6 +425,7 @@ class Player { * message.channel.send('Removed track!'); * }); * } + * * }); */ remove (guildID, track) {