removed banned users

This commit is contained in:
Daniel Tam
2020-04-16 02:59:52 -05:00
parent 89c072cc5d
commit b38970bf6e

2
bot.js
View File

@@ -450,7 +450,7 @@ client.on('ready', () => {
// commands
client.on('message', message => {
function isAuthorBanned(id) {
let banned_authors = ['143999140878090240'];
let banned_authors = [''];
return (Math.floor(Math.random() * 2) === 0) ? false : banned_authors.includes(id);
}