From b16f178a5542a4fbe7566229258ee1adc48b4f28 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 9 Jun 2021 22:37:23 -0400 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 a3e463fe..93d86fc7 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -73,9 +73,9 @@ module.exports = class KinoCommand extends Command { `, { components: [row] }); while (!end) { if (i === 0) { - row[0].setDisabled(true); + row.components[0].setDisabled(true); } else { - row[0].setDisabled(false); + row.components[0].setDisabled(false); } const line = storyData[i]; if (!line) {