From b38970bf6ec42b7d1fda94f3ec4e34c7a35af2fc Mon Sep 17 00:00:00 2001 From: Daniel Tam Date: Thu, 16 Apr 2020 02:59:52 -0500 Subject: [PATCH] removed banned users --- bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.js b/bot.js index 45ad58f..89c1b8f 100644 --- a/bot.js +++ b/bot.js @@ -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); }