aboutsummaryrefslogtreecommitdiff
path: root/events/ready.js
diff options
context:
space:
mode:
authorJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
committerJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
commit7031fa12ba79281edc49df972311c13ad0e8fa53 (patch)
tree60410a33fe45add85a9dc962c975be478f3f8cff /events/ready.js
parent106530d5dc53166632a6a0ecc8930eb2b1ed4bfd (diff)
downloadPokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.gz
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.bz2
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.zip
es-lint settings added + linted all files
Diffstat (limited to 'events/ready.js')
-rw-r--r--events/ready.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/events/ready.js b/events/ready.js
index 9c30717..3d1ce67 100644
--- a/events/ready.js
+++ b/events/ready.js
@@ -16,7 +16,7 @@ module.exports = (bot) => {
'Finding pokemon',
'Type p:help for help',
'Fighting AstralMod',
- 'Arrays start at 1',
+ 'Arrays start at 1'
];
bot.user.setPresence({
@@ -24,8 +24,8 @@ module.exports = (bot) => {
afk: false,
game: {
type: 0,
- name: games[Math.floor(Math.random() * games.length)],
- },
+ name: games[Math.floor(Math.random() * games.length)]
+ }
});
}, 200000);
};