6 lines
236 B
JavaScript
6 lines
236 B
JavaScript
const logger = require("../utils/logger.js");
|
|
|
|
// run when the bot is removed from a guild
|
|
module.exports = async (client, cluster, worker, ipc, guild) => {
|
|
logger.log(`[GUILD LEAVE] ${guild.name} (${guild.id}) removed the bot.`);
|
|
};
|