From 7d7500e58dd8ca5bbb9fc23b5c564a69f1f634fd Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 10 Mar 2021 20:42:05 -0500 Subject: [PATCH] Fix --- commands/other/kino.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/other/kino.js b/commands/other/kino.js index 0af932f7..5532683d 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -54,8 +54,8 @@ module.exports = class KinoCommand extends Command { const current = this.client.games.get(msg.channel.id); if (current) return msg.reply(`Please wait until the current game of \`${current.name}\` is finished.`); this.client.games.set(msg.channel.id, { name: this.name }); - const storyData = await this.generateStory(story); try { + const storyData = await this.generateStory(story); let i = 0; let end = false; while (!end) {