diff --git a/packages/discord.js/src/structures/Guild.js b/packages/discord.js/src/structures/Guild.js index 7c7401ca0..6d54fdca6 100644 --- a/packages/discord.js/src/structures/Guild.js +++ b/packages/discord.js/src/structures/Guild.js @@ -560,7 +560,7 @@ class Guild extends AnonymousGuild { * @returns {Promise>} */ async fetchTemplates() { - const templates = await this.client.rest.get(Routes.guildTemplate(this.id)); + const templates = await this.client.rest.get(Routes.guildTemplates(this.id)); return templates.reduce((col, data) => col.set(data.code, new GuildTemplate(this.client, data)), new Collection()); }