aboutsummaryrefslogtreecommitdiff
path: root/commands/util/help.js
diff options
context:
space:
mode:
authorame <[email protected]>2023-10-31 22:33:02 -0500
committerame <[email protected]>2023-10-31 22:33:02 -0500
commit6e90cde57af865e585cf06d297eadb4424ebcdbb (patch)
treeb4bdfeec2cefb83c5f61027cbf0ebb890122d391 /commands/util/help.js
parent53b4e132d593ac6a0d7cad6f0c988a97b68b8d2d (diff)
subcommands
Diffstat (limited to 'commands/util/help.js')
-rw-r--r--commands/util/help.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/util/help.js b/commands/util/help.js
index b52ee12..a8d5cb4 100644
--- a/commands/util/help.js
+++ b/commands/util/help.js
@@ -30,7 +30,7 @@ module.exports = {
async main (client,Discord,message,args){
this.exec(client,{message:message,specify:args[0]})
},
- s_options:[{type:"string",name:"command",desc:"command to be specified",required:false,autocomplete:command_names}],
+ s_options:[{type:"string",name:"command",desc:"command to be specified",required:false,autocomplete:false,choices:command_names}],
async s_main(client,Discord,interaction){
this.exec(client,{message:interaction,specify:interaction.options.getString("command")})
},