From de3c0948337d17cea0781a9372e269a4cab66f46 Mon Sep 17 00:00:00 2001 From: Ashley Graves Date: Fri, 11 Oct 2024 15:51:09 +0200 Subject: [PATCH] guh --- 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 f4a23dd..33237f4 100644 --- a/src/commands/fun/gelbooru.js +++ b/src/commands/fun/gelbooru.js @@ -18,8 +18,8 @@ for (const site of Object.keys(Booru.sites)) { const defaultBooru = "gelbooru.com"; const ratings = [ "rating:general", - "rating:questionable", "rating:sensitive", + "rating:questionable", "rating:explicit", ]; @@ -36,7 +36,7 @@ const data = new SlashCommandBuilder() builder // .setName("rating") .setRequired(false) - .setDescription("Image rating (default: safe)") + .setDescription("Image rating (default: general)") .setChoices(ratings.map(r => { var x = r.split(":")[1]; var s = x[0].toUpperCase() + x.slice(1); return { name: s, value: r } })) ) .addStringOption(builder =>