forked from Supositware/Haha-Yes
added [delete]
This commit is contained in:
parent
49b531d971
commit
6639023548
1 changed files with 2 additions and 1 deletions
3
rand.js
3
rand.js
|
@ -24,9 +24,10 @@ exports.random = function (text, message) {
|
|||
text = text.replace(/\[author\]/, message.author.username);
|
||||
text = text.replace(/\[kick\]/, ' ');
|
||||
text = text.replace(/\[ban\]/, ' ');
|
||||
text = text.replace(/\[delete\]/, ' ');
|
||||
text = text.replace(/\{n\}/, '\n');
|
||||
// Verify if it replaced everything
|
||||
} while( text.includes('[member]') || text.includes('[memberRand]') || text.includes('[number]') || text.includes('[author]') || text.includes('[kick]') || text.includes('[ban]') || text.includes('{n}'));
|
||||
} while( text.includes('[member]') || text.includes('[memberRand]') || text.includes('[number]') || text.includes('[author]') || text.includes('[kick]') || text.includes('[ban]') || text.includes('{n}' || text.includes('[delete]')));
|
||||
|
||||
return text;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue