From b277079493a773779630fe0c7951a61b4543e056 Mon Sep 17 00:00:00 2001 From: Emily J Date: Sun, 11 Oct 2020 12:06:10 +1100 Subject: [PATCH] add examples section to command base --- bot/base/Command.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot/base/Command.js b/bot/base/Command.js index 11e3a39..16d8c2a 100644 --- a/bot/base/Command.js +++ b/bot/base/Command.js @@ -5,6 +5,7 @@ class Command { description = "No description provided.", category = "Miscellaneous", usage = "No usage provided.", + examples = "No examples provided.", enabled = true, guildOnly = false, devOnly = false, @@ -15,7 +16,7 @@ class Command { }) { this.client = client; this.conf = { enabled, guildOnly, devOnly, aliases, userPerms, botPerms, cooldown }; - this.help = { name, description, category, usage }; + this.help = { name, description, category, usage, examples }; } } module.exports = Command;