Commit any Lagging Changes

This commit is contained in:
Daniel Odendahl Jr
2017-03-22 21:46:53 +00:00
parent d0e377dcc5
commit 791a7f8adb
2 changed files with 20 additions and 19 deletions
+19 -17
View File
@@ -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());
}
}
};
};
+1 -2
View File
@@ -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;