"help" command

This commit is contained in:
Isaac
2021-05-17 21:16:58 +01:00
parent 98c986e715
commit 37adac1dd0
14 changed files with 122 additions and 26 deletions

View File

@@ -19,7 +19,10 @@ module.exports = class CommandManager {
/** The Discord Client */
this.client = client;
/** A discord.js Collection (Map) of loaded commands */
/**
* A discord.js Collection (Map) of loaded commands
* @type {Collection<string, import('./command')>}
*/
this.commands = new Collection();
}