mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Commit any Lagging Changes
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user