This commit is contained in:
Ashley Graves 2024-10-10 16:09:09 +02:00
parent c00178063c
commit 043284a9ea

View file

@ -130,7 +130,7 @@ module.exports = {
const nsfw = interaction.options.getBoolean("nsfw") ?? false; const nsfw = interaction.options.getBoolean("nsfw") ?? false;
await interaction.deferReply(); 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(); const startTime = process.hrtime.bigint();