From 2c86665b34e8f47fa5f7978328f918ca5f2d496b Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 23 Mar 2018 11:24:49 +0000 Subject: [PATCH] Fix? --- types/image.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/image.js b/types/image.js index e49a3198..78792353 100644 --- a/types/image.js +++ b/types/image.js @@ -17,7 +17,7 @@ class ImageArgumentType extends ArgumentType { } isEmpty(value, msg) { - return !msg.attachments.size; + return msg.attachments.size === 0; } }