Altered the way aliases work.

This commit is contained in:
Keanu Timmermans 2020-07-01 14:44:02 +02:00
parent d3958dcb11
commit a5da139b97
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ module.exports = class Command {
this.aliases = options.aliases || [];
this.description = options.description || 'No description provided.';
this.category = options.category || 'Miscellaneous';
this.usage = options.usage || 'No usage provided.';
this.usage = `${this.client.prefix}${this.name} ${options.usage || ''}`.trim()
}
// eslint-disable-next-line no-unused-vars