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();