mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 17:13:31 +01:00
refactor(Managers): rename add to _add (#6060)
This commit is contained in:
@@ -45,7 +45,7 @@ class ReactionUserManager extends CachedManager {
|
||||
].get({ query: { limit, after } });
|
||||
const users = new Collection();
|
||||
for (const rawUser of data) {
|
||||
const user = this.client.users.add(rawUser);
|
||||
const user = this.client.users._add(rawUser);
|
||||
this.cache.set(user.id, user);
|
||||
users.set(user.id, user);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user