From 8253e9a6522d7d695b76edbc694c189635d10348 Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Mon, 10 Jan 2022 13:05:54 -0700 Subject: [PATCH] higher ani name for natsuki staff --- .idea/workspace.xml | 7 ++++++- commands/anime/anime.js | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8cf679b..80b0f15 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -6,7 +6,7 @@ - + + + @@ -79,6 +82,8 @@ + + 1640148826800 diff --git a/commands/anime/anime.js b/commands/anime/anime.js index 772c3ac..b46434b 100644 --- a/commands/anime/anime.js +++ b/commands/anime/anime.js @@ -78,7 +78,7 @@ module.exports = { dmch = mesg.channel; options.name = await ask(mesg, "What is the anime's name? Make sure to use proper capitalization and spelling. This applies to the rest of the questions I'll ask you.", 60000, true); if (!options.name) {return;} - if (options.name.length > 75) {clearDM(); return dmch.send("The anime name can't be more than 75 characters!");} + if (options.name.length > (queue ? 75 : 250)) {clearDM(); return dmch.send(`The anime name can't be more than ${queue ? 75 : 250} characters!`);} options.plot = await ask(mesg, "How would you describe the anime? Give a very brief description of things like its plot, main characters, and setting.", 240000, true); if (!options.plot) {return clearDM();} if (options.plot.length > 500) {clearDM(); return dmch.send("Oi! I said give a \"very brief\" description of the anime!");}