From 85c953003ecd5e010ed5d5285bd25d09eabbf77b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 9 Jun 2021 22:40:03 -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 709019e1..88b55c01 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -71,7 +71,7 @@ module.exports = class KinoCommand extends Command { Press the "Next" button to go to the next page, and "Prev" to go back. Press "End" at any time to stop reading. `, { components: [row] }); - const initialInteractions = await questionMsg.awaitMessageComponentInteractions(filter, { + const initialInteractions = await initialMsg.awaitMessageComponentInteractions(filter, { max: 1, time: 15000 }); @@ -94,7 +94,7 @@ module.exports = class KinoCommand extends Command { ${escapeMarkdown(line.trim())} `, { components: [row] }); - const interactions = await questionMsg.awaitMessageComponentInteractions(filter, { + const interactions = await initialMsg.awaitMessageComponentInteractions(filter, { max: 1, time: 15000 });