From 95790dcf08a97175ed88a6736e19a96a94f4a4ea Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Thu, 29 Dec 2016 03:21:22 -0500 Subject: [PATCH] Update User#equals doc --- src/structures/User.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/User.js b/src/structures/User.js index 993c8e192..f7148289a 100644 --- a/src/structures/User.js +++ b/src/structures/User.js @@ -237,7 +237,7 @@ class User { } /** - * Checks if the user is equal to another. It compares username, ID, discriminator, status and the game being played. + * Checks if the user is equal to another. It compares ID, username, discriminator, avatar, and bot flags. * It is recommended to compare equality by using `user.id === user2.id` unless you want to compare all properties. * @param {User} user User to compare with * @returns {boolean}