From 7bd48db5c010608d657ae7ef5b4a643afe686b5b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 24 Apr 2021 21:05:09 -0400 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 23c1f0fc..60e5af04 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -83,7 +83,7 @@ module.exports = class KinoCommand extends Command { this.client.games.delete(msg.channel.id); const filename = stories.find(sto => sto.toLowerCase() === story); const num = stories.indexOf(filename).toString().padStart(2, '0'); - const usage = this.usage(`${num} ${i}`); + const usage = this.usage(`${num} ${i + 1}`); return msg.say(`You can resume reading from where you were by using ${usage}.`); } i++;