Add level to template command

This commit is contained in:
7cc5c4f330d47060 2024-07-22 18:20:38 -04:00
parent 3e779e459b
commit f44220b0e6

View file

@ -16,7 +16,8 @@ module.exports={
},
desc: "Does nothing", // Command description
usage: ' <required> [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)
}