committed event scripts (forgot to last time)

This commit is contained in:
ayeuhugyu 2023-09-16 07:27:05 -07:00
parent 1b03b8ca15
commit 5b2bd43069
5 changed files with 99 additions and 0 deletions

7
src/events/ready.js Normal file
View file

@ -0,0 +1,7 @@
const log = require("../util/log.js").execute;
module.exports.execute = function (client) {
console.log(`${client.user.tag} is online.`);
const channel = client.channels.cache.get("1148814162273763418");
channel.send("pepperbot restart complete");
};