added [delete]

This commit is contained in:
Supositware 2019-04-05 19:47:06 +02:00
parent 49b531d971
commit 6639023548

View file

@ -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;
};