mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
fix(User): only assign to bot initially or if info is actually present (#4990)
This commit is contained in:
@@ -45,11 +45,13 @@ class User extends Base {
|
||||
this.username = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether or not the user is a bot
|
||||
* @type {boolean}
|
||||
*/
|
||||
this.bot = Boolean(data.bot);
|
||||
if ('bot' in data || typeof this.bot !== 'boolean') {
|
||||
/**
|
||||
* Whether or not the user is a bot
|
||||
* @type {boolean}
|
||||
*/
|
||||
this.bot = Boolean(data.bot);
|
||||
}
|
||||
|
||||
if ('discriminator' in data) {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user