add help info

This commit is contained in:
Emily 2021-03-13 14:33:03 +11:00
parent 7ed859d8e5
commit b777077868

View file

@ -7,15 +7,15 @@ module.exports = class {
this.category = category, this.category = category,
this.enabled = true, this.enabled = true,
this.devOnly = false, this.devOnly = false,
this.aliases = [], this.aliases = ['user'],
this.userPerms = [], this.userPerms = [],
this.botPerms = [], this.botPerms = [],
this.cooldown = 2000, this.cooldown = 2000,
this.help = { this.help = {
description: '', description: 'Get information on a user.',
arguments: '', arguments: '[user]',
details: '', details: '',
examples: '' examples: 'userinfo\nuserinfo Octavia\nuserinfo @Animals'
}; };
} }