forked from Supositware/Haha-Yes
Merge branch 'master' of https://gitlab.com/LoicBersier/DiscordBot
This commit is contained in:
commit
f751aaf61d
1 changed files with 3 additions and 2 deletions
5
rand.js
5
rand.js
|
@ -42,13 +42,14 @@ exports.random = function (text, message) {
|
|||
text = text.replace(/\[state\]/, states[randNumber(states)]);
|
||||
text = text.replace(/\[title\]/, titles[randNumber(titles)]);
|
||||
text = text.replace(/\[unit\]/, units[randNumber(units)]);
|
||||
text = text.replace(/\[member\]/, message.guild.members.random().user.username);
|
||||
text = text.replace(/\[member\]/g, message.guild.members.random().user.username);
|
||||
text = text.replace(/\[memberRand\]/, message.guild.members.random().user.username);
|
||||
text = text.replace(/\[number\]/, Math.floor((Math.random() * 9) + 1));
|
||||
text = text.replace(/\[author\]/, message.author.username);
|
||||
text = text.replace(/\[kick\]/, ' ');
|
||||
text = text.replace(/\[ban\]/, ' ');
|
||||
// Verify if it replaced everything
|
||||
} while( text.includes('[verb]') || text.includes('[adverbs]') || text.includes('[noun]') || text.includes('[adjective]') || text.includes('[member]') || text.includes('[number]') || text.includes('[activities]') || text.includes('[celebrities]') || text.includes('[countries]') || text.includes('[diseases]') || text.includes('[elements]') || text.includes('[hobbies]') || text.includes('[music]') || text.includes('[prefixes]') || text.includes('[pronoun]') || text.includes('[state]') || text.includes('[title]') || text.includes('[unit]') || text.includes('[author]') || text.includes('[kick]') || text.includes('[ban]'));
|
||||
} while( text.includes('[verb]') || text.includes('[adverbs]') || text.includes('[noun]') || text.includes('[adjective]') || text.includes('[member]') || text.includes('[memberRand]') || text.includes('[number]') || text.includes('[activities]') || text.includes('[celebrities]') || text.includes('[countries]') || text.includes('[diseases]') || text.includes('[elements]') || text.includes('[hobbies]') || text.includes('[music]') || text.includes('[prefixes]') || text.includes('[pronoun]') || text.includes('[state]') || text.includes('[title]') || text.includes('[unit]') || text.includes('[author]') || text.includes('[kick]') || text.includes('[ban]'));
|
||||
|
||||
return text;
|
||||
};
|
Loading…
Reference in a new issue