From 0bacabc40db0724384f8fbc7472c5e59aec6e62d Mon Sep 17 00:00:00 2001 From: Dalton Date: Fri, 7 Dec 2018 17:11:17 -0800 Subject: [PATCH] added myself to banned users for debug --- bot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.js b/bot.js index 3ed7e95..e094fb6 100644 --- a/bot.js +++ b/bot.js @@ -492,7 +492,7 @@ client.on('message', message => { // Dalton's image summon command. // Checks for banned author's using a hard coded list of discord ids. // Also rudely cleans garbage entries. - let banned_authors = ['143999140878090240']; + let banned_authors = ['143999140878090240', '517182806359801857']; if (~banned_authors.includes(message.author)) { let messageSplit = message.content.substring(2).split(' '); @@ -502,7 +502,7 @@ client.on('message', message => { // Valid Argument if (redditToSummon) { - message.channel.send(message.author + ' summons *' + redditToSummon + '*\n'); + message.channel.send(message.author + ' summons ' + redditToSummon + '*\n'); let site_response = bestEffortRequest(redditToSummon, 5); if (site_response) {