make tags optional

This commit is contained in:
Ashley Graves 2024-10-10 08:45:14 +02:00
parent 0bc5929663
commit 61861604e0

View file

@ -18,7 +18,7 @@ const data = new SlashCommandBuilder()
.addStringOption(builder =>
builder //
.setName("tags")
.setRequired(true)
.setRequired(false)
.setDescription("Tags to search for")
)
.addStringOption(builder =>
@ -179,4 +179,4 @@ module.exports = {
}
},
};
};