From 61861604e0ed5c323c76bc454b58efa65a553360 Mon Sep 17 00:00:00 2001 From: Ashley Graves Date: Thu, 10 Oct 2024 08:45:14 +0200 Subject: [PATCH] make tags optional --- src/commands/fun/gelbooru.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/fun/gelbooru.js b/src/commands/fun/gelbooru.js index 467aa72..5ab5329 100644 --- a/src/commands/fun/gelbooru.js +++ b/src/commands/fun/gelbooru.js @@ -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 = { } }, -}; \ No newline at end of file +};