diff --git a/src/structures/RichEmbed.js b/src/structures/RichEmbed.js index 7cd98b99d..a62e58833 100644 --- a/src/structures/RichEmbed.js +++ b/src/structures/RichEmbed.js @@ -175,7 +175,7 @@ class RichEmbed { * @returns {RichEmbed} This embed */ setFooter(text, icon) { - if (text.length > 2048) throw new RangeError('RichEmbed footer text may not exceed 1024 characters.'); + if (text.length > 2048) throw new RangeError('RichEmbed footer text may not exceed 2048 characters.'); this.footer = { text, icon_url: icon }; return this; }