mrmBot-Matrix/events/guildCreate.js

9 lines
309 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.`);
await db(ipc, "addGuild", guild);
2019-09-13 20:02:41 +00:00
};