diff --git a/commands/textedit/shuffle.js b/commands/textedit/shuffle.js index 509becc1..6cd6c9e6 100644 --- a/commands/textedit/shuffle.js +++ b/commands/textedit/shuffle.js @@ -1,7 +1,19 @@ const commando = require('discord.js-commando'); +String.prototype.shuffle = function() { + let a = this.split(""), + n = a.length; + for (let i = n - 1; i > 0; i--) { + let j = Math.floor(Math.random() * (i + 1)); + let tmp = a[i]; + a[i] = a[j]; + a[j] = tmp; + } + return a.join(""); +}; + module.exports = class ShuffleCommand extends commando.Command { - constructor(Client){ + constructor(Client) { super(Client, { name: 'shuffle', group: 'textedit', @@ -12,26 +24,16 @@ module.exports = class ShuffleCommand extends commando.Command { } async run(message) { - if(message.channel.type !== 'dm') { - if(!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return; + if (message.channel.type !== 'dm') { + if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return; } console.log("[Command] " + message.content); - String.prototype.shuffle = function () { - let a = this.split(""), - n = a.length; - for(let i = n - 1; i > 0; i--) { - let j = Math.floor(Math.random() * (i + 1)); - let tmp = a[i]; - a[i] = a[j]; - a[j] = tmp; - } - return a.join(""); - }; let thingToShuffle = message.content.split(" ").slice(1).join(" "); - if(thingToShuffle === '') { + if (thingToShuffle === '') { message.channel.send(":x: Error! Nothing to shuffle!"); - } else { + } + else { message.channel.send(thingToShuffle.shuffle()); } } -}; \ No newline at end of file +}; diff --git a/commands/textedit/temmie.js b/commands/textedit/temmie.js index b37f72b9..d749ac25 100644 --- a/commands/textedit/temmie.js +++ b/commands/textedit/temmie.js @@ -150,8 +150,7 @@ function translator(text) { let character = text[i]; if (isLetter(character)) { word += character; - } - else { + } else { if (word != "") { let wordTranslate = translateWord(word); translatedText += wordTranslate;