diff --git a/packages/discord.js/src/structures/Guild.js b/packages/discord.js/src/structures/Guild.js index f0f502158..c1afc973a 100644 --- a/packages/discord.js/src/structures/Guild.js +++ b/packages/discord.js/src/structures/Guild.js @@ -718,7 +718,7 @@ class Guild extends AnonymousGuild { } if (options.user) { - const id = this.client.user.resolveId(options.user); + const id = this.client.users.resolveId(options.user); if (!id) throw new TypeError('INVALID_TYPE', 'user', 'UserResolvable'); query.set('user_id', id); }