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