From 14f516e602b37ca6da34771ba3105092ba9c3bce Mon Sep 17 00:00:00 2001 From: Dalton Date: Tue, 11 Dec 2018 21:04:21 -0800 Subject: [PATCH] doing same on set activity --- bot.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bot.js b/bot.js index 8636ad7..44e6984 100644 --- a/bot.js +++ b/bot.js @@ -396,10 +396,7 @@ client.on('ready', () => { setStatus = availableStatus[Math.floor(Math.random() * availableStatus.length)]; // todo this set activity returns a promise and we aren't doing anything with it - client.user.setActivity(setStatus, {type: setType}) - .catch(error => { - sendToBotTestingChannel('client.user.setActivity:' + error.message); - }); + client.user.setActivity(setStatus, {type: setType}); }) ;