From 957b1309ff15a2a1f155f3b66afa4cc4e9eb5378 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 10 Mar 2021 20:41:29 -0500 Subject: [PATCH] Fix --- commands/other/kino.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/other/kino.js b/commands/other/kino.js index 76a39967..0af932f7 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -1,7 +1,7 @@ const Command = require('../../structures/Command'); const { stripIndents } = require('common-tags'); const { escapeMarkdown } = require('discord.js'); -const { verify, list } = require('../../util/Util'); +const { verify } = require('../../util/Util'); const path = require('path'); const fs = require('fs'); const { readFile } = require('fs/promises'); @@ -43,7 +43,7 @@ module.exports = class KinoCommand extends Command { return choice.toLowerCase(); } const num = Number.parseInt(choice, 10); - return stories[num]; + return stories[num].toLowerCase(); } } ]