Skip to content

Commit

Permalink
fix(Sticker): Rename method correctly to _add (#6421)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Aug 15, 2021
1 parent 81bb68d commit 2c449b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/structures/Sticker.js
Expand Up @@ -78,7 +78,7 @@ class Sticker extends Base {
* The user that uploaded the guild sticker
* @type {?User}
*/
this.user = sticker.user ? this.client.users.add(sticker.user) : null;
this.user = sticker.user ? this.client.users._add(sticker.user) : null;

/**
* The standard sticker's sort order within its pack
Expand Down

0 comments on commit 2c449b6

Please sign in to comment.