aboutsummaryrefslogtreecommitdiff
path: root/events/ready.js
blob: 4a1bb3996d2b463e854696f24703972644dd2695 (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('Galaxy has finished loading.');
  bot.user.setPresence({
    status: 'online',
    afk: false,
    game: {
      type: 0,
      name: 'v2.0 Alpha 1 - g:',
    },
  });
};