diff --git a/types/image.js b/types/image.js index 087885b6..d6a9943c 100644 --- a/types/image.js +++ b/types/image.js @@ -12,7 +12,7 @@ class ImageArgumentType extends ArgumentType { return valid; } if (!attachment.height || !attachment.width) return false; - if (attachment.size > 4e+6) return false; + if (attachment.size > 2e+6) return false; return true; }