mrmBot-Matrix/events/guildCreate.js

10 lines
362 B
JavaScript
Raw Normal View History

const db = require("../utils/database.js");
2019-09-13 20:02:41 +00:00
const logger = require("../utils/logger.js");
// run when the bot is added to a guild
2021-07-05 04:15:27 +00:00
module.exports = async (client, cluster, worker, ipc, guild) => {
logger.log(`[GUILD JOIN] ${guild.name} (${guild.id}) added the bot.`);
const guildDB = await db.getGuild(guild.id);
if (!guildDB) await db.addGuild(guild);
2019-09-13 20:02:41 +00:00
};