Make the bot option in the leave command required

This commit is contained in:
Logan Cusano
2023-06-16 22:02:54 -04:00
parent f5e119d845
commit c4650a9e99

View File

@@ -40,7 +40,8 @@ module.exports = {
.addStringOption(option =>
option.setName("bot")
.setDescription("The bot to disconnect from the server")
.setAutocomplete(true)),
.setAutocomplete(true)
.setRequired(true)),
example: "leave",
isPrivileged: false,
requiresTokens: false,