diff --git a/src/Structures/Command.js b/src/Structures/Command.js index 95195b1..f9a9399 100644 --- a/src/Structures/Command.js +++ b/src/Structures/Command.js @@ -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