mirror of
https://github.com/1disk/edp445.git
synced 2024-08-14 22:47:02 +00:00
Status update
This commit is contained in:
parent
7dbf15b966
commit
402d01ceba
1 changed files with 12 additions and 4 deletions
10
index.js
10
index.js
|
@ -7,7 +7,15 @@ const botconfig = require('./data/botconfig.json') //Login info for the bot, you
|
|||
client.on("ready", () => {
|
||||
console.log(`The bot is online!`)
|
||||
|
||||
client.user.setPresence({ status: 'dnd' });
|
||||
client.user.setActivity(`${client.guilds.cache.size} servers • discord.gg/memee`, {
|
||||
type: "WATCHING"
|
||||
});
|
||||
});
|
||||
|
||||
client.on("guildCreate", function(guild){
|
||||
client.user.setActivity(`${client.guilds.cache.size} servers • discord.gg/memee`, {
|
||||
type: "WATCHING"
|
||||
});
|
||||
});
|
||||
|
||||
client.on("message", async (message) => {
|
||||
|
|
Loading…
Reference in a new issue