diff --git a/events/guildCreate.js b/events/guildCreate.js new file mode 100644 index 0000000..f63ca10 --- /dev/null +++ b/events/guildCreate.js @@ -0,0 +1,6 @@ +import { log } from "../utils/logger.js"; + +// run when the bot is added to a guild +export default async (client, guild) => { + log(`[GUILD JOIN] ${guild.name} (${guild.id}) added the bot.`); +};