const event = __filename
.replace(__dirname, "")
.split(".")
.slice(0, -1)
.join(".")
.replace("/", "")
.replace("\\", "");
module.exports = async (oldGuild, newGuild) => {
/**
* @event this
* @description Emitted when the afk channel is added
* @param {Discord:Guild} The guild where the changes were made
* @param {String} The new afk channel
* @example
* client.on(event, async (guild, newAFKChannel) => {
* console.log(`The guild with the id ${guild.id} added AFK channel (${newAFKChannel}).`);
* });
*/
var client = oldGuild.client;
if (
oldGuild.afkChannelID != newGuild.afkChannelID &&
newGuild.afkChannelID != (null || undefined)
)
client.emit(event, newGuild, newGuild.afkChannel);
};