Initial Commit
Only really used for reaction roles at the moment.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { Events } from "discord.js";
|
||||
import { Event } from "../types/ExtendedClient";
|
||||
import { ExtendedClient } from "../client/client";
|
||||
|
||||
const event: Event = {
|
||||
data: {
|
||||
name: Events.ClientReady
|
||||
},
|
||||
once: true,
|
||||
exec: (c: ExtendedClient) => {
|
||||
console.log(`Succesfully logged in as ${c.user?.username}`);
|
||||
}
|
||||
}
|
||||
|
||||
export default event;
|
||||
Reference in New Issue
Block a user