diff --git a/util/Constants.js b/util/Constants.js index c73441f..f3aba04 100644 --- a/util/Constants.js +++ b/util/Constants.js @@ -37,4 +37,14 @@ exports.PermissionNames = { MANAGE_ROLES: "Manage Roles", MANAGE_WEBHOOKS: "Manage Webhooks", MANAGE_EMOJIS: "Manage Emojis" +}; + +exports.EmbedLimits = { + embed: 6000, + title: 256, + description: 2048, + fiedObjects: 25, + fieldName: 256, + fieldValue: 1024, + footerText: 2048 }; \ No newline at end of file diff --git a/util/GBotTest.png b/util/GBotTest.png new file mode 100644 index 0000000..48810b9 Binary files /dev/null and b/util/GBotTest.png differ diff --git a/util/index.js b/util/index.js index 2515a15..eb12076 100644 --- a/util/index.js +++ b/util/index.js @@ -1,5 +1,6 @@ module.exports = { Collection: require('./Collection.js'), Util: require('./Util.js'), - Emojis: require('./emojis.json') + Emojis: require('./emojis.json'), + Constants: require('./Constants.js') }; \ No newline at end of file