diff --git a/packages/discord.js/src/structures/Guild.js b/packages/discord.js/src/structures/Guild.js index 298fe5b05..908fb9699 100644 --- a/packages/discord.js/src/structures/Guild.js +++ b/packages/discord.js/src/structures/Guild.js @@ -633,9 +633,6 @@ class Guild extends AnonymousGuild { * .catch(console.error); */ async fetchVanityData() { - if (!this.features.includes(GuildFeature.VanityURL)) { - throw new DiscordjsError(ErrorCodes.VanityURL); - } const data = await this.client.rest.get(Routes.guildVanityUrl(this.id)); this.vanityURLCode = data.code; this.vanityURLUses = data.uses;