aboutsummaryrefslogtreecommitdiff
path: root/events/ready.js
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-07-10 18:29:55 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-07-10 18:29:55 -0400
commitc648f47f889ee2dbfae0c896493c13efcd295b99 (patch)
tree94ce7613f31e20edc83703b8015a7860a6f83355 /events/ready.js
parenta73ff78266909481b6677eeb7fe8683c59480912 (diff)
downloadPokeBot-c648f47f889ee2dbfae0c896493c13efcd295b99.tar.gz
PokeBot-c648f47f889ee2dbfae0c896493c13efcd295b99.tar.bz2
PokeBot-c648f47f889ee2dbfae0c896493c13efcd295b99.zip
HA HA
Diffstat (limited to 'events/ready.js')
-rw-r--r--events/ready.js27
1 files changed, 8 insertions, 19 deletions
diff --git a/events/ready.js b/events/ready.js
index 9c30717..12e491e 100644
--- a/events/ready.js
+++ b/events/ready.js
@@ -9,23 +9,12 @@
module.exports = (bot) => {
console.log('PokeBot has finished loading.');
- bot.setInterval(function() {
- const games = [
- 'Pokemon',
- 'Catching things',
- 'Finding pokemon',
- 'Type p:help for help',
- 'Fighting AstralMod',
- 'Arrays start at 1',
- ];
-
- bot.user.setPresence({
- status: 'online',
- afk: false,
- game: {
- type: 0,
- name: games[Math.floor(Math.random() * games.length)],
- },
- });
- }, 200000);
+ bot.user.setPresence({
+ status: 'online',
+ afk: false,
+ game: {
+ type: 0,
+ name: 'v2.0 Alpha 1 - g:',
+ },
+ });
};