Fix userUpdate event

This commit is contained in:
Amish Shah
2017-09-05 11:52:17 +01:00
parent e5ac8f34ee
commit e686c9a816

View File

@@ -244,8 +244,7 @@ class User extends Base {
this.id === user.id &&
this.username === user.username &&
this.discriminator === user.discriminator &&
this.avatar === user.avatar &&
this.bot === Boolean(user.bot);
this.avatar === user.avatar
return equal;
}