added [delete]

merge-requests/3/head
Supositware 5 years ago
parent 49b531d971
commit 6639023548

@ -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…
Cancel
Save