From 2796c1ba1e22d4508c77e9a905895cc3fc19d0c4 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 30 Jan 2021 12:08:25 -0500 Subject: [PATCH] Fix --- types/image-or-avatar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/image-or-avatar.js b/types/image-or-avatar.js index 682aa4f7..a6140437 100644 --- a/types/image-or-avatar.js +++ b/types/image-or-avatar.js @@ -19,6 +19,6 @@ module.exports = class ImageOrAvatarArgumentType extends ArgumentType { isEmpty(value, msg, arg) { return this.client.registry.types.get('image').isEmpty(value, msg, arg) - || this.client.registry.types.get('user').isEmpty(value, msg, arg); + && this.client.registry.types.get('user').isEmpty(value, msg, arg); } };