diff --git a/config/emojis.example.json b/config/emojis.example.json index 49592e7..e1c1c77 100644 --- a/config/emojis.example.json +++ b/config/emojis.example.json @@ -1,4 +1,5 @@ { + "warning": "<:warning:1293874152150667315>", "booru": { "rating": { "safe": "<:rating_safe:1293819920978804829>", diff --git a/src/commands/fun/gelbooru.js b/src/commands/fun/gelbooru.js index 8d29ab6..504723e 100644 --- a/src/commands/fun/gelbooru.js +++ b/src/commands/fun/gelbooru.js @@ -147,8 +147,6 @@ module.exports = { const searchTags = [rating, ...tags, ...[...blacklist, ...userBlacklist].map(i => "-" + i)]; const startTime = process.hrtime.bigint(); - console.log(searchTags); - var post = (await Booru.search(booru, searchTags, { limit: 1, random: true, credentials: credentials[booru] ?? null }))[0]; if (post == null) { await interaction.followUp(emojis.warning + " Could not find any post matching tags.");