From 043284a9ea260ef3528e4eddf4f26099bf070ea4 Mon Sep 17 00:00:00 2001 From: Ashley Graves Date: Thu, 10 Oct 2024 16:09:09 +0200 Subject: [PATCH] GUH --- src/commands/fun/gelbooru.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/fun/gelbooru.js b/src/commands/fun/gelbooru.js index 9c5da4a..9b94cfa 100644 --- a/src/commands/fun/gelbooru.js +++ b/src/commands/fun/gelbooru.js @@ -130,7 +130,7 @@ module.exports = { const nsfw = interaction.options.getBoolean("nsfw") ?? false; await interaction.deferReply(); - const searchTags = [...(nsfw ? [] : ["-rating:explicit", "-rating:questionable"]), ...tags, ...blacklist.map(i => "-" + i)]; + const searchTags = [...(nsfw ? [] : ["-rating:explicit", "-rating:sensitive", "-rating:questionable"]), ...tags, ...blacklist.map(i => "-" + i)]; const startTime = process.hrtime.bigint();