initial commit
This commit is contained in:
12
events/bot/ready.js
Normal file
12
events/bot/ready.js
Normal file
@ -0,0 +1,12 @@
|
||||
const { Events, ActivityType } = require("discord.js");
|
||||
|
||||
module.exports = {
|
||||
|
||||
name: Events.ClientReady,
|
||||
run(client) {
|
||||
|
||||
client.user.setActivity("Fortnite", {type: ActivityType.Playing})
|
||||
|
||||
console.log(`${client.user.username} is online`);
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user