diff --git a/mbot.js b/mbot.js index 462be97..d95c584 100644 --- a/mbot.js +++ b/mbot.js @@ -1,3 +1,10 @@ +/** + * @typedef cmds + * @property {string} id The guild servers id. + * @property {string} name The commands name. + * @property {string} message The message the command outputs. + * + */ // init discord lib const settings = require('./settings.json'); const pkg = require('./package.json'); @@ -24,6 +31,7 @@ const event = module.exports.event; /** * The custom commands in the server. + * @type {Array} */ module.exports.cCommands = []; diff --git a/package-lock.json b/package-lock.json index 960be55..4f0d292 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mbot", - "version": "7.5.2", + "version": "7.5.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 2d80115..6e49a0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mbot", - "version": "7.5.2", + "version": "7.5.3", "description": "Private discord bot", "main": "mbot.js", "scripts": {