From a07a0bfff597de5149200640b3f1ea19fae508a4 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 9 Jun 2021 22:43:27 -0400 Subject: [PATCH] Fix --- commands/other/kino.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/other/kino.js b/commands/other/kino.js index 6234ab66..3569a145 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -75,9 +75,9 @@ module.exports = class KinoCommand extends Command { max: 1, time: 15000 }); - if (!initialInteractions.size) return initialMsg.edit('Maybe next time!'); + if (!initialInteractions.size) return initialMsg.edit('Maybe next time!', { components: [] }); let choice = initialInteractions.first(); - if (choice.customID === 'end') return choice.update('Maybe next time!'); + if (choice.customID === 'end') return choice.update('Maybe next time!', { components: [] }); while (!end) { if (i === 0) { row.components[0].setDisabled(true); @@ -107,10 +107,10 @@ module.exports = class KinoCommand extends Command { } else if (choice.customID === 'end') { break; } else { - return initialMsg.edit('Maybe next time!'); + return initialMsg.edit('Maybe next time!', { components: [] }); } } - return choice.update('Thank you for reading this chapter of Kino\'s Journey!'); + return choice.update('Thank you for reading this chapter of Kino\'s Journey!', { components: [] }); } async generateStory(file) {