why did it take me 3 goddamn months to realize this was missing

This commit is contained in:
Essem 2023-03-09 10:10:52 -06:00
parent 10b80f2fd0
commit d36ff74326
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
1 changed files with 6 additions and 0 deletions

6
events/guildCreate.js Normal file
View File

@ -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.`);
};