diff options
| -rw-r--r-- | aleebot.js | 21 |
1 files changed, 4 insertions, 17 deletions
@@ -56,26 +56,13 @@ fs.readdir('./commands/', (err, files) => { client.on('ready', () => { - log(`[>] AleeBot is now ready! Running version ${abversion} in ${client.guilds.size} guilds!`); - function setGame() { - var games = [ - "with version " + abversion, - "attacking AstralMod", - "with stuff", - "with Alee", - "games" - ] - + log(`[>] AleeBot is now ready! Running version ${abversion} in ${client.guilds.size} guilds`); client.user.setPresence({ - status: 'online', - afk: false, game: { - type: 0, - name: games[Math.floor(Math.random() * games.length)] + name: 'with version' +abversion, + type: 0 } - }) -} - + }); client.user.setStatus('online') }); |
