diff --git a/commands/tags.js b/commands/tags.js index 82a0306..640b8ad 100644 --- a/commands/tags.js +++ b/commands/tags.js @@ -60,7 +60,7 @@ exports.run = async (message, args) => { if (embeds.length === 0) return `${message.author.mention}, I couldn't find any tags!`; return paginator(message, embeds); case "random": - return tags[random(Object.keys(tags))].content; + return random(Array.from(tags))[1].content; default: if (!tags.has(args[0].toLowerCase())) return `${message.author.mention}, this tag doesn't exist!`; return tags.get(args[0].toLowerCase()).content;