aboutsummaryrefslogtreecommitdiff
path: root/events/ready.js
blob: 12e491eb1e7fb899eb42eaf7bd176be37bca78bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** **************************************
 *
 *   Ready: Plugin for PokeBot that setups up pokebot for production.
 *   Copyright (C) 2018 TheEdge, jtsshieh, Alee
 *
 *   Licensed under the Open Software License version 3.0
 *
 * *************************************/

module.exports = (bot) => {
  console.log('PokeBot has finished loading.');
  bot.user.setPresence({
    status: 'online',
    afk: false,
    game: {
      type: 0,
      name: 'v2.0 Alpha 1 - g:',
    },
  });
};