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); } };