guildUpdate/guildRegionUpdate.js

  1. const event = __filename
  2. .replace(__dirname, "")
  3. .split(".")
  4. .slice(0, -1)
  5. .join(".")
  6. .replace("/", "")
  7. .replace("\\", "");
  8. module.exports = async (oldGuild, newGuild) => {
  9. /**
  10. * @event this
  11. * @description Emitted when the region is changed
  12. * @param {Discord:Guild} The guild where the changes were made
  13. * @param {String} The old guild region
  14. * @param {String} The new guild region
  15. * @example
  16. * client.on(event, async (guild, oldRegion, newRegion) => {
  17. * console.log(`The guild with the id ${guild.id} updated Region (${oldRegion} => ${newRegion}).`);
  18. * });
  19. */
  20. var client = oldGuild.client;
  21. if (
  22. oldGuild.region != newGuild.region &&
  23. newGuild.region != (null || undefined)
  24. )
  25. client.emit(event, newGuild, oldGuild.region, newGuild.region);
  26. };