From f44220b0e64385e12c4d7dbee1cefb8f63a57711 Mon Sep 17 00:00:00 2001 From: 7cc5c4f330d47060 Date: Mon, 22 Jul 2024 18:20:38 -0400 Subject: [PATCH] Add level to template command --- plugins/commands/template.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/commands/template.js b/plugins/commands/template.js index 60b155a..f1f9d15 100644 --- a/plugins/commands/template.js +++ b/plugins/commands/template.js @@ -16,7 +16,8 @@ module.exports={ }, desc: "Does nothing", // Command description usage: ' [optional]', // Command usage - hidden: true, // To show the command on the help command list, remove this line - consoleIndex: true, // When run from console, the second argument will be a bot ID - aliases: ["example", "testing"] // Other command names that will work the same + hidden: true, // To show the command on the help command list, remove this line (optional) + consoleIndex: true, // When run from console, the second argument will be a bot ID (optional) + aliases: ["example", "testing"], // Other command names that will work the same (optional) + level: 0 // Permission level required to run this command (optional) }