diff --git a/src/structures/User.js b/src/structures/User.js index 1107e8a0c..546e74ff2 100644 --- a/src/structures/User.js +++ b/src/structures/User.js @@ -13,16 +13,17 @@ const { Error } = require('../errors'); class User extends Base { constructor(client, data) { super(client); - this._patch(data); - } - _patch(data) { /** * The ID of the user * @type {Snowflake} */ this.id = data.id; + this._patch(data); + } + + _patch(data) { /** * The username of the user * @type {string}