guildUpdate/guildIconUpdate.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 guild icon is changed
  12. * @param {Discord:Guild} The guild where the changes were made
  13. * @param {String} The old guild icon URL
  14. * @param {String} The new guild icon URL
  15. * @example
  16. * client.on(event, async (guild, oldIcon, newIcon) => {
  17. * console.log(`The guild with the id ${guild.id} updated Icon (${oldIcon} => ${newIcon}).`);
  18. * });
  19. */
  20. var client = oldGuild.client;
  21. if (oldGuild.icon != newGuild.icon && newGuild.icon != (null || undefined))
  22. client.emit(
  23. event,
  24. newGuild,
  25. oldGuild.iconURL({
  26. format: "png",
  27. dynamic: true,
  28. size: 4096,
  29. }),
  30. newGuild.iconURL({
  31. format: "png",
  32. dynamic: true,
  33. size: 4096,
  34. })
  35. );
  36. };