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}); }) ;