Add flag help stuff

This commit is contained in:
Dragon Fire
2021-06-06 20:22:46 -04:00
parent eb49435f83
commit 8286007afe
5 changed files with 15 additions and 54 deletions
+1
View File
@@ -10,6 +10,7 @@ module.exports = class Command {
this.memberName = options.memberName.toLowerCase();
this.description = options.description;
this.details = options.details || null;
this.flags = options.flags || [];
this.args = options.args ? options.args.map(arg => new Argument(client, arg)) : [];
this.clientPermissions = options.clientPermissions || [];
this.userPermissions = options.userPermissions || [];